Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Mouat <[email protected]>
  • Loading branch information
amouat committed Oct 30, 2024
1 parent 6c348d2 commit 7bd17c4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-push-runners.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
platforms: linux/arm64
push: true
tags: amouat/images-bite-back:arm-runner-${GITHUB_RUN_ID}
tags: amouat/images-bite-back:arm-runner-${{ github.RUN_ID}

x86build:
runs-on: [ubuntu-latest-16-cores]
Expand All @@ -49,7 +49,7 @@ jobs:
with:
platforms: linux/x86_64
push: true
tags: amouat/images-bite-back:x86-runner-${GITHUB_RUN_ID}
tags: amouat/images-bite-back:x86-runner-${{ github.RUN_ID }}

manifest:
needs: [x86build, armbuild]
Expand All @@ -64,10 +64,10 @@ jobs:
-
name: Create and Push Multi-Platform Manifest
run: |
docker manifest create amouat/images-bite-back:multiplatorm-${{ GITHUB_RUN_ID }} \
amouat/images-bite-back:x86-runner-${{ GITHUB_RUN_ID }} \
amouat/images-bite-back:arm-runner-${{ GITHUB_RUN_ID }}
docker manifest push amouat/images-bite-back:multiplatorm-${{ GITHUB_RUN_ID }}
docker manifest create amouat/images-bite-back:multiplatorm-${{ github.RUN_ID }} \
amouat/images-bite-back:x86-runner-${{ github.RUN_ID }} \
amouat/images-bite-back:arm-runner-${{ github_RUN_ID }}
docker manifest push amouat/images-bite-back:multiplatorm-${{ github.RUN_ID }}
#name: Publish Docker image
#
Expand Down

0 comments on commit 7bd17c4

Please sign in to comment.