We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f39c3 commit efc0d23Copy full SHA for efc0d23
.github/workflows/go.yaml
@@ -119,8 +119,8 @@ jobs:
119
120
- name: Create commit manifest
121
run: |
122
- docker pull ${{ inputs.image }}:${{ github.sha }}-amd64
123
- 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
124
docker manifest create ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }} ${{ inputs.image }}:${{ github.sha }}-amd64 ${{ inputs.image }}:${{ github.sha }}-arm64
125
docker manifest push ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }}
126
0 commit comments