Skip to content

Commit

Permalink
explicit image
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Madigan <[email protected]>
  • Loading branch information
jasonmadigan committed Dec 18, 2024
1 parent a5cc64d commit c189e95
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dev-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
id: build
uses: redhat-actions/buildah-build@v2
with:
image: ${{ env.IMAGE_BASE_NAME }}-${{ matrix.arch }}
tags: latest
image: ${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}
tags: latest-${{ matrix.arch }}
archs: ${{ matrix.arch }}
containerfiles: |
./Dockerfile
Expand All @@ -44,8 +44,8 @@ jobs:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_PASSWORD }}
image: ${{ env.IMAGE_BASE_NAME }}-${{ matrix.arch }}
tags: latest
image: ${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}
tags: latest-${{ matrix.arch }}

manifest:
name: Create and Push Multi-Arch Manifest
Expand All @@ -58,8 +58,8 @@ jobs:
- name: Create Manifest
run: |
buildah manifest create ${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}:latest
buildah manifest add ${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}:latest docker://${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}-amd64:latest
buildah manifest add ${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}:latest docker://${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}-arm64:latest
buildah manifest add ${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}:latest docker://${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}:latest-amd64
buildah manifest add ${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}:latest docker://${{ env.REGISTRY }}/${{ env.IMAGE_BASE_NAME }}:latest-arm64
- name: Push Multi-Arch Manifest
run: |
Expand Down

0 comments on commit c189e95

Please sign in to comment.