Allow static binary to be built in parallel with tests #9
This file contains 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 | |
- name: Docker build | |
run: ./utils.sh build-docker |