Compare commits

..

7 Commits

Author SHA1 Message Date
06b0a48cff fix(Dockerfile): update shell script to v4
All checks were successful
Build / build-amd64 (push) Successful in 19s
Lint Markdown files / markdown-lint (push) Successful in 5s
Build / build-arm64 (push) Successful in 52s
Release / push-amd64 (push) Successful in 26s
Release / push-arm64 (push) Successful in 1m9s
Release / push-manifest (push) Successful in 10s
Release / sync-to-hub-docker-io (push) Successful in 22s
2025-11-12 22:00:55 +01:00
1f164f8197 fix!: remove pre-installed plugins
Some checks failed
Auto release / tag_on_change (push) Successful in 8s
Build / build-amd64 (push) Successful in 21s
Lint Markdown files / markdown-lint (push) Successful in 4s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 4s
Release / push-arm64 (push) Has been cancelled
Release / push-manifest (push) Has been cancelled
Release / sync-to-hub-docker-io (push) Has been cancelled
Release / push-amd64 (push) Has been cancelled
Build / build-arm64 (push) Successful in 55s
The pre-installed plugins must be installed individually. Otherwise runs this
project into the problem, that we need to trigger a new release of the container
image only to update the plugin in case of an issue.
2025-11-12 21:59:27 +01:00
761b2d5416 chore(deps): update dependency helm/helm to v4 2025-11-12 21:59:21 +01:00
7bfb7839ce chore(deps): update dependency helm/helm to v3.19.2
All checks were successful
Build / build-amd64 (pull_request) Successful in 26s
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Build / build-arm64 (pull_request) Successful in 1m5s
Auto release / tag_on_change (push) Successful in 6s
Build / build-amd64 (push) Successful in 25s
Lint Markdown files / markdown-lint (push) Successful in 4s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 5s
Build / build-arm64 (push) Successful in 1m2s
2025-11-12 20:33:07 +00:00
60e387d423 fix(ci): trigger push tagged images workflow based on condition
All checks were successful
Build / build-amd64 (push) Successful in 28s
Lint Markdown files / markdown-lint (push) Successful in 3s
Build / build-arm64 (push) Successful in 1m5s
2025-11-12 21:29:09 +01:00
2b4be2c079 chore(deps): restrict updates of helm/helm to minor and patch
All checks were successful
Build / build-amd64 (push) Successful in 26s
Lint Markdown files / markdown-lint (push) Successful in 3s
Build / build-arm64 (push) Successful in 1m4s
2025-11-12 21:26:15 +01:00
3bd63b7db7 fix(ci): pass raw version as build arg 2025-11-12 21:25:11 +01:00
4 changed files with 8 additions and 8 deletions

View File

@@ -53,6 +53,7 @@ jobs:
git push origin "${defined_tag}" git push origin "${defined_tag}"
- name: Trigger "Push tagged images" workflow - name: Trigger "Push tagged images" workflow
if: steps.check_change.outputs.changed == 'true'
uses: actions/github-script@v8.0.0 uses: actions/github-script@v8.0.0
with: with:
script: | script: |

View File

@@ -44,7 +44,7 @@ jobs:
- name: Build and push image - name: Build and push image
run: | run: |
docker buildx build \ docker buildx build \
--build-arg HELM_VERSION=${{ github.ref_name }} \ --build-arg HELM_VERSION=${{ steps.version_extraction.outputs.version_raw }} \
--file Dockerfile \ --file Dockerfile \
--platform linux/arm64 \ --platform linux/arm64 \
--provenance false \ --provenance false \
@@ -84,7 +84,7 @@ jobs:
- name: Build and push image - name: Build and push image
run: | run: |
docker buildx build \ docker buildx build \
--build-arg HELM_VERSION=${{ github.ref_name }} \ --build-arg HELM_VERSION=${{ steps.version_extraction.outputs.version_raw }} \
--file Dockerfile \ --file Dockerfile \
--platform linux/amd64 \ --platform linux/amd64 \
--provenance false \ --provenance false \

View File

@@ -3,16 +3,11 @@ FROM docker.io/library/alpine:3.22.2
ARG HELM_VERSION ARG HELM_VERSION
RUN apk add bash curl git openssl && \ RUN apk add bash curl git openssl && \
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 --output /tmp/install.sh curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4 --output /tmp/install.sh
RUN if [[ -z "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh; fi RUN if [[ -z "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh; fi
RUN if [[ -n "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh --version "${HELM_VERSION}"; fi RUN if [[ -n "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh --version "${HELM_VERSION}"; fi
RUN rm /tmp/install.sh RUN rm /tmp/install.sh
# Install additionally helm plugins
RUN helm plugin install https://github.com/chartmuseum/helm-push.git && \
helm plugin install https://github.com/helm-unittest/helm-unittest.git && \
helm plugin install https://github.com/losisin/helm-values-schema-json.git
ENTRYPOINT [ "/usr/local/bin/helm" ] ENTRYPOINT [ "/usr/local/bin/helm" ]

View File

@@ -31,6 +31,10 @@
], ],
"matchManagers": [ "matchManagers": [
"regex" "regex"
],
"matchUpdateTypes": [
"minor",
"patch"
] ]
} }
] ]