Compare commits

..

2 Commits

Author SHA1 Message Date
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
2 changed files with 6 additions and 2 deletions

View File

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

View File

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