Skip to content

Commit a89a962

Browse files
authored
Merge pull request #46 from blinklabs-io/chore/ci-fix-missing-tick
chore(ci): fix missing tick introduced in #45
2 parents 50b24aa + fa85781 commit a89a962

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)