Skip to content

Commit

Permalink
Specify arch in release process
Browse files Browse the repository at this point in the history
  • Loading branch information
heubeck committed Jun 26, 2024
1 parent 67366dc commit 84092bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ jobs:

- name: Build manifest for ${{ env.VERSION }} and latest
run: |
podman pull "${image_name}:${VERSION}-amd64"
podman pull "${image_name}:${VERSION}-arm64"
podman pull --arch amd64 "${image_name}:${VERSION}-amd64"
podman pull --arch arm64 "${image_name}:${VERSION}-arm64"
sha_amd64=$(podman inspect "${image_name}:${VERSION}-amd64" | jq -r '.[] | select(.Architecture == "amd64" and .Os == "linux") | .Digest')
sha_arm64=$(podman inspect "${image_name}:${VERSION}-arm64" | jq -r '.[] | select(.Architecture == "arm64" and .Os == "linux") | .Digest')
Expand Down

0 comments on commit 84092bc

Please sign in to comment.