Bump tar-fs from 3.0.8 to 3.0.9 in /webapp (#61) #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build the Docker image | |
| run: | | |
| cd webapp && \ | |
| docker compose build \ | |
| --no-cache \ | |
| --build-arg NODE_ENV="production" \ | |
| --build-arg DB_URL=${{ secrets.DB_URL }} \ | |
| --build-arg DB_PASS=${{ secrets.DB_PASS }} \ | |
| --build-arg DB_NAME=${{ secrets.DB_NAME }} \ | |
| --build-arg NEXTAUTH_URL=${{ secrets.NEXTAUTH_URL }} \ | |
| --build-arg NEXTAUTH_SECRET=${{ secrets.NEXTAUTH_SECRET }} \ | |
| --build-arg GOOGLE_CLIENT_ID=${{ secrets.GOOGLE_CLIENT_ID }} \ | |
| --build-arg GOOGLE_CLIENT_SECRET=${{ secrets.GOOGLE_CLIENT_SECRET }} |