Skip to content

Commit

Permalink
Fix pull image name
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Mar 1, 2025
1 parent f8f39c3 commit efc0d23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ jobs:

- name: Create commit manifest
run: |
docker pull ${{ inputs.image }}:${{ github.sha }}-amd64
docker pull ${{ inputs.image }}:${{ github.sha }}-arm64
docker pull ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }}-amd64
docker pull ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }}-arm64
docker manifest create ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }} ${{ inputs.image }}:${{ github.sha }}-amd64 ${{ inputs.image }}:${{ github.sha }}-arm64
docker manifest push ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }}
Expand Down

0 comments on commit efc0d23

Please sign in to comment.