diff --git a/.github/workflows/docker-staging.yml b/.github/workflows/docker-staging.yml index 6a449782..fd7ff82c 100644 --- a/.github/workflows/docker-staging.yml +++ b/.github/workflows/docker-staging.yml @@ -21,13 +21,13 @@ jobs: uses: docker/build-push-action@v5 with: context: . - file: ./Dockerfile.backend + 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: . - file: ./Dockerfile.frontend + 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 ba59cebd..0b282495 100644 --- a/.github/workflows/nox-ci.yml +++ b/.github/workflows/nox-ci.yml @@ -32,6 +32,6 @@ jobs: - name: Install Yarn run: npm install -g yarn - name: Install nox-poetry - run: pipx install nox-poetry + run: pipx inject nox nox-poetry - name: Run Nox (all checks) run: nox