Skip to content

Commit

Permalink
Merge pull request #21 from yext/telliott_release_action
Browse files Browse the repository at this point in the history
Add action to build and publish binaries on release
  • Loading branch information
theothertomelliott authored Mar 25, 2024
2 parents 3c2be26 + b401032 commit 8e5d265
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release Go Binaries

on:
release:
types: [created]

jobs:
releases-matrix:
name: Release Matrix
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, darwin]
goarch: [arm64, amd64]
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.19
build_flags: -v
sha256sum: true
extra_files: LICENSE README.md

0 comments on commit 8e5d265

Please sign in to comment.