fix(chore): global settings redesign #335
Workflow file for this run
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: Docker PR Build (enext) | |
| on: | |
| pull_request: | |
| branches: [enext] | |
| jobs: | |
| build_docker_image: | |
| name: Build Docker image for enext PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@2b51285047da1547ffb1b2203d8be4c0af6b1f20 | |
| - name: Build Docker image | |
| uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 | |
| with: | |
| context: ./app | |
| file: ./app/Dockerfile.prod | |
| push: false | |
| tags: eventyay-next:${{ github.sha }} | |
| build-args: | | |
| GITHUB_TOKEN=${{ secrets.EVENTYAY_TOKEN }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |