Skip to content

Commit

Permalink
chore(ci): fix missing tick introduced in #45
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Gianelloni <wolf31o2@blinklabs.io>
  • Loading branch information
wolf31o2 committed Apr 1, 2023
1 parent 50b24aa commit fa85781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -245,12 +245,12 @@ jobs:

- name: manifest-dockerhub
run: |
for t in `echo '${{ steps.meta-dockerhub.outputs.tags }}'; do
for t in `echo '${{ steps.meta-dockerhub.outputs.tags }}'`; do
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
done
- name: manifest-dockerhub-tags
run: |
for t in `echo '${{ steps.meta-dockerhub-tag.outputs.tags }}'; do
for t in `echo '${{ steps.meta-dockerhub-tag.outputs.tags }}'`; do
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
docker manifest create ${{ env.DOCKER_IMAGE_NAME }}:latest --amend ${t}-amd64 --amend ${t}-arm64v8
done
Expand Down

0 comments on commit fa85781

Please sign in to comment.