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

This commit is contained in:
Markus Pesch 2025-05-07 22:40:21 +02:00
parent 9a255ee460
commit be41839fb1
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

View File

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