fix: bearing maths
All checks were successful
Auto Tag on Merge to Main / auto-tag (push) Successful in 4s
CI - Lint and Build / lint-backend (push) Successful in 18s
CI - Lint and Build / lint-frontend (push) Successful in 13s
CI - Lint and Build / build-frontend (push) Successful in 15s
CI - Lint and Build / docker-build-test (push) Successful in 38s

This commit is contained in:
Millaguie
2025-11-28 16:00:49 +01:00
parent f979ad67a0
commit 093b75d775
5 changed files with 108 additions and 96 deletions

View File

@@ -52,10 +52,11 @@ jobs:
uses: docker/build-push-action@v5
with:
context: ./frontend
target: production
push: true
build-args: |
VITE_API_URL=${{ secrets.PROD_API_URL }}
VITE_WS_URL=${{ secrets.PROD_WS_URL }}
VITE_API_URL=${{ secrets.PROD_API_URL || 'https://trenes.millaguie.net/api' }}
VITE_WS_URL=${{ secrets.PROD_WS_URL || 'https://trenes.millaguie.net' }}
APP_VERSION=${{ steps.version.outputs.version }}
BUILD_DATE=${{ steps.date.outputs.date }}
GIT_COMMIT=${{ github.sha }}