clear timeout on fail case #102
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: | |
| - '**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Install Docker Buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Build Docker image | |
| working-directory: ./app | |
| run: | | |
| docker buildx build \ | |
| --platform linux/amd64 \ | |
| . |