Skip to content

Commit 86fb6ec

Browse files
committed
first step
1 parent e0c9a21 commit 86fb6ec

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci-arm-build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,19 @@ jobs:
4949
elif [[ "${GITHUB_REF}" == refs/heads/hotfix_staging_* ]]; then
5050
echo "TAG_PREFIX=hotfix-staging-github" >> $GITHUB_ENV
5151
fi
52-
- name: build & push images
52+
- name: build & push images for latest tag
5353
run: |
5454
export DOCKER_IMAGE_TAG="$TAG_PREFIX-latest-arm64"
5555
export DOCKER_TARGET_PLATFORMS=linux/arm64
5656
make build push=true
57-
- name: build & push images
57+
- name: build & push images for specific tag
5858
run: |
5959
export DOCKER_IMAGE_TAG=$(exec ci/helpers/build_docker_image_tag.bash)-arm64
6060
export DOCKER_TARGET_PLATFORMS=linux/arm64
6161
make build push=true
62-
- name: fuse images in the registry
62+
- name: fuse images in the registry for latest tag
6363
run: |
6464
export DOCKER_IMAGE_TAG="$TAG_PREFIX-latest"
6565
make docker-image-fuse SUFFIX=arm64
66+
- name: set git tag
67+
run: echo "GIT_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)