diff --git a/.github/workflows/deploy-api.yml b/.github/workflows/deploy-api.yml index 3d8c7b4..9e80e26 100644 --- a/.github/workflows/deploy-api.yml +++ b/.github/workflows/deploy-api.yml @@ -32,6 +32,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Go to apps/api + run: cd apps/api + # If merge event triggered this, get the name of the branch - name: Get branch name (merge) if: github.event_name != 'pull_request' @@ -71,7 +74,7 @@ jobs: - name: 'Build and push image' uses: docker/build-push-action@v3 with: - file: './apps/api/Dockerfile' + file: 'Dockerfile' context: '.' platforms: linux/amd64 push: true