Skip to content

Commit

Permalink
Merge pull request #47 from blinklabs-io/chore/ci-fix-missing-tick-again
Browse files Browse the repository at this point in the history
chore(ci): fix missing tick (another time)
  • Loading branch information
wolf31o2 committed Apr 1, 2023
2 parents a89a962 + 22dff88 commit 7d8eef9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -223,13 +223,13 @@ jobs:
# Manifest for either branch or semver
- name: manifest-ghcr
run: |
for t in `echo '${{ steps.meta-ghcr.outputs.tags }}'; do
for t in `echo '${{ steps.meta-ghcr.outputs.tags }}'`; do
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
done
# Optional manifest for tag versions (includes revisions)
- name: manifest-ghcr-tags
run: |
for t in `echo '${{ steps.meta-ghcr-tag.outputs.tags }}'; do
for t in `echo '${{ steps.meta-ghcr-tag.outputs.tags }}'`; do
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
docker manifest create ${{ env.GHCR_IMAGE_NAME }}:latest --amend ${t}-amd64 --amend ${t}-arm64v8
done
Expand Down

0 comments on commit 7d8eef9

Please sign in to comment.