Skip to content

Commit efc0d23

Browse files
committed
Fix pull image name
1 parent f8f39c3 commit efc0d23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/go.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ jobs:
119119

120120
- name: Create commit manifest
121121
run: |
122-
docker pull ${{ inputs.image }}:${{ github.sha }}-amd64
123-
docker pull ${{ inputs.image }}:${{ github.sha }}-arm64
122+
docker pull ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }}-amd64
123+
docker pull ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }}-arm64
124124
docker manifest create ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }} ${{ inputs.image }}:${{ github.sha }}-amd64 ${{ inputs.image }}:${{ github.sha }}-arm64
125125
docker manifest push ${{ env.GHCR_REGISTRY_IMAGE }}:${{ github.sha }}
126126

0 commit comments

Comments
 (0)