Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mlajkim committed Jun 29, 2024
1 parent 94ab5ac commit 3d47c22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ jobs:

- name: Build the Docker image for PR
if: github.event_name == 'pull_request'
run: docker build . --file Dockerfile --tag ajktown/consistency:pr-${{ github.event.pull_request.number }}
run: docker build . --file Dockerfile --tag ajktown/wordnote:pr${{ github.event.pull_request.number }}

- name: Push the Docker image for PR
if: github.event_name == 'pull_request'
run: docker push ajktown/consistency:pr${{ github.event.pull_request.number }}
run: docker push ajktown/wordnote:pr${{ github.event.pull_request.number }}

- name: Build the Docker image as latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: docker build . --file Dockerfile --tag ajktown/consistency:latest
run: docker build . --file Dockerfile --tag ajktown/wordnote:latest

- name: Push the Docker image as latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: docker push ajktown/consistency:latest
run: docker push ajktown/wordnote:latest

0 comments on commit 3d47c22

Please sign in to comment.