Fix printing of retry duration #38
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 static binary | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| branches: | |
| - main | |
| # only one build per branch | |
| concurrency: | |
| group: static-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-release: | |
| name: Build static binary | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'true' | |
| - name: Docker build | |
| run: ./utils.sh build-docker |