File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments