Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
Fix push again
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuildthecloud committed May 20, 2022
1 parent 172b649 commit 69973c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
run: |
VERSION=v$(cat releases/metadata.json | jq -r .version)
IMAGES=$(docker images --format "{{.Repository}}:{{.Tag}}" | grep "$VERSION")
echo ${IMAGES} | xargs -L1 docker push
for i in ${IMAGES}; do
docker push $i
done
docker manifest create ghcr.io/acorn-io/acorn:main ${IMAGES}
docker manifest push ghcr.io/acorn-io/acorn:main
docker manifest create ghcr.io/acorn-io/acorn:${VERSION} ${IMAGES}
Expand Down

0 comments on commit 69973c9

Please sign in to comment.