From be41839fb14c60d5550babeaae64a6983e682566 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 7 May 2025 22:40:21 +0200 Subject: [PATCH] fix(ci): set build-arg with yaml lint version --- .gitea/workflows/release.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 99f20b8..cdc7895 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -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: