From 86fb6ecec91aafa1e8730770e3e686096493d2f6 Mon Sep 17 00:00:00 2001 From: sanderegg <35365065+sanderegg@users.noreply.github.com> Date: Mon, 6 Jan 2025 15:11:27 +0100 Subject: [PATCH] first step --- .github/workflows/ci-arm-build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-arm-build.yml b/.github/workflows/ci-arm-build.yml index 25858bc6062..0dca219a690 100644 --- a/.github/workflows/ci-arm-build.yml +++ b/.github/workflows/ci-arm-build.yml @@ -49,17 +49,19 @@ jobs: elif [[ "${GITHUB_REF}" == refs/heads/hotfix_staging_* ]]; then echo "TAG_PREFIX=hotfix-staging-github" >> $GITHUB_ENV fi - - name: build & push images + - name: build & push images for latest tag run: | export DOCKER_IMAGE_TAG="$TAG_PREFIX-latest-arm64" export DOCKER_TARGET_PLATFORMS=linux/arm64 make build push=true - - name: build & push images + - name: build & push images for specific tag run: | export DOCKER_IMAGE_TAG=$(exec ci/helpers/build_docker_image_tag.bash)-arm64 export DOCKER_TARGET_PLATFORMS=linux/arm64 make build push=true - - name: fuse images in the registry + - name: fuse images in the registry for latest tag run: | export DOCKER_IMAGE_TAG="$TAG_PREFIX-latest" make docker-image-fuse SUFFIX=arm64 + - name: set git tag + run: echo "GIT_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV