diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 0d388e7..1a4d38f 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest container: - image: node:24 + image: ubuntu-latest options: --network pg_network steps: @@ -52,5 +52,14 @@ jobs: env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + + DB_URL: ${{ secrets.DB_URL }} + DB_USERNAME: ${{ secrets.DB_USERNAME }} + DB_PASSWORD: ${{ secrets.DB_PASSWORD }} + PG_DRIVER_CLASS_NAME: org.postgresql.Driver + + OPENAI_BASE_URL: https://api.openai.com/v1 + OPENAI_KEY: ${{ secrets.OPENAI_KEY }} + ALLOWED_ORIGINS: http://localhost:3000 run: ./gradlew build sonar --info working-directory: backend