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:
223
223
# Manifest for either branch or semver
224
224
- name : manifest-ghcr
225
225
run : |
226
- for t in `echo '${{ steps.meta-ghcr.outputs.tags }}'; do
226
+ for t in `echo '${{ steps.meta-ghcr.outputs.tags }}'` ; do
227
227
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
228
228
done
229
229
# Optional manifest for tag versions (includes revisions)
230
230
- name : manifest-ghcr-tags
231
231
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
233
233
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
234
234
docker manifest create ${{ env.GHCR_IMAGE_NAME }}:latest --amend ${t}-amd64 --amend ${t}-arm64v8
235
235
done
You can’t perform that action at this time.
0 commit comments