diff --git a/.gitea/workflows/cd.yaml b/.gitea/workflows/cd.yaml index 4a5a5de7..c96b6171 100644 --- a/.gitea/workflows/cd.yaml +++ b/.gitea/workflows/cd.yaml @@ -39,7 +39,8 @@ jobs: - name: Build and Push API uses: docker/build-push-action@v5 with: - context: ./apps/api + context: . + file: ./apps/api/Dockerfile push: true tags: | ${{ env.HARBOR }}/awoooi/api:${{ github.sha }} @@ -54,7 +55,8 @@ jobs: - name: Build and Push Web uses: docker/build-push-action@v5 with: - context: ./apps/web + context: . + file: ./apps/web/Dockerfile push: true tags: | ${{ env.HARBOR }}/awoooi/web:${{ github.sha }}