File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,13 +223,13 @@ jobs:
223223 # Manifest for either branch or semver
224224 - name : manifest-ghcr
225225 run : |
226- for t in `echo '${{ steps.meta-ghcr.outputs.tags }}'; do
226+ for t in `echo '${{ steps.meta-ghcr.outputs.tags }}'` ; do
227227 docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
228228 done
229229 # Optional manifest for tag versions (includes revisions)
230230 - name : manifest-ghcr-tags
231231 run : |
232- for t in `echo '${{ steps.meta-ghcr-tag.outputs.tags }}'; do
232+ for t in `echo '${{ steps.meta-ghcr-tag.outputs.tags }}'` ; do
233233 docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
234234 docker manifest create ${{ env.GHCR_IMAGE_NAME }}:latest --amend ${t}-amd64 --amend ${t}-arm64v8
235235 done
You can’t perform that action at this time.
0 commit comments