Skip to content

Commit fa85781

Browse files
committed
chore(ci): fix missing tick introduced in #45
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 50b24aa commit fa85781

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
@@ -245,12 +245,12 @@ jobs:
245245

246246
- name: manifest-dockerhub
247247
run: |
248-
for t in `echo '${{ steps.meta-dockerhub.outputs.tags }}'; do
248+
for t in `echo '${{ steps.meta-dockerhub.outputs.tags }}'`; do
249249
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
250250
done
251251
- name: manifest-dockerhub-tags
252252
run: |
253-
for t in `echo '${{ steps.meta-dockerhub-tag.outputs.tags }}'; do
253+
for t in `echo '${{ steps.meta-dockerhub-tag.outputs.tags }}'`; do
254254
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
255255
docker manifest create ${{ env.DOCKER_IMAGE_NAME }}:latest --amend ${t}-amd64 --amend ${t}-arm64v8
256256
done

0 commit comments

Comments
 (0)