Skip to content

Commit 22dff88

Browse files
committed
chore(ci): fix missing tick (another time)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent a89a962 commit 22dff88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)