Skip to content

Commit

Permalink
Fix Dockerfile path in docker publish workflow (#367)
Browse files Browse the repository at this point in the history
* Fix Dockerfile path in docker-publish workflow

* Fix docker-publish-latest.yaml
  • Loading branch information
choidabom authored Oct 11, 2024
1 parent 7063137 commit 3192170
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/base-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
- name: Build & Push Image
env:
VERSION: ${{ inputs.version }}
run: docker buildx build --platform linux/amd64,linux/arm64 -t yorkieteam/codepair:$VERSION --push ./backend
run: docker buildx build --platform linux/amd64,linux/arm64 -t yorkieteam/codepair:$VERSION --push .
1 change: 1 addition & 0 deletions .github/workflows/docker-publish-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
paths:
- ".github/workflows/docker-publish-latest.yaml"
- "backend/**"
- "Dockerfile"
jobs:
call-base-docker-publish:
uses: ./.github/workflows/base-docker-publish.yml
Expand Down

0 comments on commit 3192170

Please sign in to comment.