Skip to content

Commit

Permalink
Change workflow to use a reusable workflow for building the Go release (
Browse files Browse the repository at this point in the history
arcalot#23)

* Change workflow to use a reusable workflow for building the Go release

* Pass Go version as an input to sub-workflows
  • Loading branch information
webbnh authored Apr 10, 2024
1 parent 28bffa7 commit 76a7755
Showing 1 changed file with 5 additions and 29 deletions.
34 changes: 5 additions & 29 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,43 +6,19 @@ on:
tags:
- v*
pull_request:
env:
go_version: ${{ vars.ARCALOT_GO_VERSION }}
jobs:
lint_and_test:
name: lint and test
uses: arcalot/arcaflow-reusable-workflows/.github/workflows/go_lint_and_test.yaml@main
with:
go_version: ${{ vars.ARCALOT_GO_VERSION }}
build:
name: build
runs-on: ubuntu-latest
permissions:
contents: write
needs:
- lint_and_test
env:
uses: arcalot/arcaflow-reusable-workflows/.github/workflows/go_release.yaml@main
with:
go_version: ${{ vars.ARCALOT_GO_VERSION }}
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' && 'release' || 'snapshot' }}
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

0 comments on commit 76a7755

Please sign in to comment.