Skip to content

Commit

Permalink
first step
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Jan 6, 2025
1 parent e0c9a21 commit 86fb6ec
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci-arm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 86fb6ec

Please sign in to comment.