Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Dec 15, 2021
1 parent ad75225 commit 8cd559c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bionic_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ jobs:

- name: Push post-build Docker
if: ${{ env.PUSH_DOCKER_IMAGE == 'true' }}
run: for tag in ${{ steps.meta.outputs.tags }}; do docker push $tag; done
run: docker push --all-tags ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4 changes: 2 additions & 2 deletions .github/workflows/focal_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,5 @@ jobs:
DOCKER_COMMIT: ${{ steps.meta.outputs.tags }}

- name: Push post-build Docker
if: ${{ env.PUSH_DOCKER_IMAGE == 'true' }}
run: for tag in ${{ steps.meta.outputs.tags }}; do docker push $tag; done
if: ${{ env.PUSH_DOCKER_IMAGE == 'true' }}
run: docker push --all-tags ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

0 comments on commit 8cd559c

Please sign in to comment.