Skip to content

Commit

Permalink
Remove -a flag from docker push
Browse files Browse the repository at this point in the history
Signed-off-by: Nicko Guyer <[email protected]>
  • Loading branch information
nguyer committed Oct 11, 2021
1 parent 82f6ded commit 187a3eb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ jobs:
- name: Push docker image
run: |
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
docker push -a ghcr.io/hyperledger/firefly-ethconnect
docker push ghcr.io/hyperledger/firefly-ethconnect:$GITHUB_REF
- name: Push latest tag
if: github.event.action == 'published'
run: |
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
docker push ghcr.io/hyperledger/firefly-ethconnect:$latest

0 comments on commit 187a3eb

Please sign in to comment.