Fixed level for messages during configure time #114
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: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: 'true' | |
| - uses: actions/setup-python@v3 | |
| - uses: pre-commit/action@v3.0.1 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push | |
| id: build-and-push | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| file: ./Dockerfile | |
| platforms: linux/amd64 | |
| no-cache: ${{ inputs.clean_build == true }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| outputs: type=local,dest=./build_output | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - uses: actions/upload-artifact@v4 | |
| name: Upload Artifact | |
| with: | |
| path: ./build_output |