Skip to content

Commit

Permalink
Merge pull request #46 from blinklabs-io/chore/ci-fix-missing-tick
Browse files Browse the repository at this point in the history
chore(ci): fix missing tick introduced in #45
  • Loading branch information
wolf31o2 committed Apr 1, 2023
2 parents 50b24aa + fa85781 commit a89a962
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 a89a962

Please sign in to comment.