3 Commits

Author SHA1 Message Date
be41839fb1 fix(ci): set build-arg with yaml lint version
All checks were successful
Build / build-amd64 (push) Successful in 1m37s
Build / build-arm64 (push) Successful in 1m41s
Release / push-arm64 (push) Successful in 2m8s
Release / push-amd64 (push) Successful in 2m28s
Release / push-manifest (push) Successful in 10s
Release / sync-to-hub-docker-io (push) Successful in 41s
2025-05-07 22:40:21 +02:00
9a255ee460 chore(deps): update dependency adrienverge/yamllint to v1.37.1
Some checks failed
Release / push-arm64 (push) Has been cancelled
Release / push-amd64 (push) Has been cancelled
Release / push-manifest (push) Has been cancelled
Release / sync-to-hub-docker-io (push) Has been cancelled
Build / build-arm64 (push) Successful in 1m49s
Build / build-amd64 (push) Successful in 1m45s
2025-05-07 17:11:51 +02:00
ddcf17c2b7 docs: typo
All checks were successful
Build / build-amd64 (push) Successful in 1m34s
Build / build-arm64 (push) Successful in 1m49s
2025-05-07 17:09:53 +02:00
2 changed files with 9 additions and 7 deletions

View File

@ -24,11 +24,12 @@ jobs:
TAG=$(echo ${{ github.ref_name }} | sed 's/v//gm') TAG=$(echo ${{ github.ref_name }} | sed 's/v//gm')
docker buildx build \ docker buildx build \
--platform linux/arm64 \ --build-arg YAMLLINT_VERSION=${{ github.ref_name }} \
--file Dockerfile \ --file Dockerfile \
--platform linux/arm64 \
--provenance false \ --provenance false \
--tag git.cryptic.systems/volker.raschek/yamllint:${TAG}-arm64 \
--push \ --push \
--tag git.cryptic.systems/volker.raschek/yamllint:${TAG}-arm64 \
. .
push-amd64: push-amd64:
@ -49,11 +50,12 @@ jobs:
TAG=$(echo ${{ github.ref_name }} | sed 's/v//gm') TAG=$(echo ${{ github.ref_name }} | sed 's/v//gm')
docker buildx build \ docker buildx build \
--platform linux/amd64 \ --build-arg YAMLLINT_VERSION=${{ github.ref_name }} \
--file Dockerfile \ --file Dockerfile \
--platform linux/amd64 \
--provenance false \ --provenance false \
--tag git.cryptic.systems/volker.raschek/yamllint:${TAG}-amd64 \
--push \ --push \
--tag git.cryptic.systems/volker.raschek/yamllint:1.37.1-amd64 \
. .
push-manifest: push-manifest:

View File

@ -1,6 +1,6 @@
# YAMLLINT_VERSION # YAMLLINT_VERSION
# Only required to install a specifiy version # Only required to install a specify version
YAMLLINT_VERSION?=v1.37.0 # renovate: datasource=github-releases depName=adrienverge/yamllint YAMLLINT_VERSION?=v1.37.1 # renovate: datasource=github-releases depName=adrienverge/yamllint
# CONTAINER_RUNTIME # CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a # The CONTAINER_RUNTIME variable will be used to specified the path to a