Skip to content

Commit 409fb08

Browse files
committed
Fix digest extraction.
1 parent 1c86d3d commit 409fb08

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,13 @@ jobs:
185185
DIGEST_AMD64=`docker buildx imagetools inspect ${IMG_RELEASE}-amd64 --format '{{ .Manifest.Digest }}'`
186186
DIGEST_ARM64=`docker buildx imagetools inspect ${IMG_RELEASE}-arm64 --format '{{ .Manifest.Digest }}'`
187187
docker manifest create ${IMG_RELEASE} \
188-
--amend ${env.IMAGE_NAME}:${DIGEST_AMD64} \
189-
--amend ${env.IMAGE_NAME}:${DIGEST_ARM64}
188+
--amend ${{ env.IMAGE_NAME }}:${DIGEST_AMD64} \
189+
--amend ${{ env.IMAGE_NAME }}:${DIGEST_ARM64}
190190
docker manifest push ${IMG_RELEASE}
191191
# latest manifest
192192
docker manifest create ${{ env.IMAGE_NAME }}:latest \
193-
--amend ${env.IMAGE_NAME}:${DIGEST_AMD64} \
194-
--amend ${env.IMAGE_NAME}:${DIGEST_ARM64}
193+
--amend ${{ env.IMAGE_NAME }}:${DIGEST_AMD64} \
194+
--amend ${{ env.IMAGE_NAME }}:${DIGEST_ARM64}
195195
docker manifest push ${{ env.IMAGE_NAME }}:latest
196196
197197
- name: Inspect manifests (optional)

0 commit comments

Comments
 (0)