Fixing github actions.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-09 09:58:47 -04:00
parent 268354e6c0
commit 49ee87e795
2 changed files with 6 additions and 4 deletions

View File

@@ -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

View File

@@ -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