diff --git a/.github/workflows/docker-staging.yml b/.github/workflows/docker-staging.yml index c96f351d..6a449782 100644 --- a/.github/workflows/docker-staging.yml +++ b/.github/workflows/docker-staging.yml @@ -20,14 +20,14 @@ jobs: - name: Build and push backend image uses: docker/build-push-action@v5 with: - context: ./backend - file: ./backend/Dockerfile + context: . + file: ./Dockerfile.backend push: true tags: ghcr.io/${{ github.repository }}/backend:staging - name: Build and push frontend image uses: docker/build-push-action@v5 with: - context: ./frontend - file: ./frontend/Dockerfile + context: . + file: ./Dockerfile.frontend push: true tags: ghcr.io/${{ github.repository }}/frontend:staging diff --git a/.github/workflows/nox-ci.yml b/.github/workflows/nox-ci.yml index 9940af01..ba59cebd 100644 --- a/.github/workflows/nox-ci.yml +++ b/.github/workflows/nox-ci.yml @@ -31,5 +31,7 @@ jobs: run: pipx install poetry - name: Install Yarn run: npm install -g yarn + - name: Install nox-poetry + run: pipx install nox-poetry - name: Run Nox (all checks) run: nox