Build #10
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
env: | |
go_version: 1.21.7 # Should match the value in arcalot/.github/.../go_lint_and_test.yaml | |
jobs: | |
lint_and_test: | |
name: lint and test | |
uses: webbnh/.github/.github/workflows/go_lint_and_test.yaml@common_workflows # FIXME: should be arcalot/...@v<tag> | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
needs: | |
- lint_and_test | |
env: | |
for_release: ${{ startsWith(github.event.ref, 'refs/tags/') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
- name: Build${{ env.for_release == 'true' && ' and release' || '' }} | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: ${{ env.ARGS }} | |
env: | |
GITHUB_TOKEN: ${{ env.for_release == 'true' && secrets.GITHUB_TOKEN || '' }} | |
GOPROXY: direct | |
GOSUMDB: off | |
ARGS: ${{ env.for_release == 'true' && 'release --clean' || 'build --snapshot' }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: binaries | |
path: dist |