fix: specify a message when acquiring the flock (#419) #271
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
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
branches: | |
- master | |
name: Canary | |
jobs: | |
canary: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.16.3' | |
- name: Build Hermit | |
run: | | |
make GOOS=linux GOARCH=amd64 CHANNEL=canary build | |
make GOOS=linux GOARCH=arm64 CHANNEL=canary build | |
make GOOS=darwin GOARCH=amd64 CHANNEL=canary build | |
make GOOS=darwin GOARCH=arm64 CHANNEL=canary build | |
INSTALLER_VERSION=$(go run -ldflags "-X main.channel=canary" ./cmd/hermit gen-installer --dest=build/install.sh) | |
cp build/install.sh build/install-"${INSTALLER_VERSION}".sh | |
- name: Release canary | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: canary | |
name: Canary | |
allowUpdates: true | |
artifacts: "build/*" | |
token: ${{ secrets.GITHUB_TOKEN }} |