Skip to content

Commit

Permalink
Fix invalid GitHub workflow step syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
loranmutafov committed Feb 7, 2023
1 parent 1eba462 commit 03ffc80
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ jobs:
uses: actions/checkout@v2

- name: Build Docker image
run: DOCKER_BUILDKIT=1 docker build . -t $IMAGE_NAME:${{ github.ref_name }}
run: DOCKER_BUILDKIT=1 docker build . -t $IMAGE_NAME:latest
run: |
DOCKER_BUILDKIT=1 docker build . -t $IMAGE_NAME:${{ github.ref_name }}
DOCKER_BUILDKIT=1 docker build . -t $IMAGE_NAME:latest
- name: Push Docker image
run: docker push $IMAGE_NAME:${{ github.ref_name }}
run: docker push $IMAGE_NAME:latest
run: |
docker push $IMAGE_NAME:${{ github.ref_name }}
docker push $IMAGE_NAME:latest

0 comments on commit 03ffc80

Please sign in to comment.