Skip to content

Commit

Permalink
Create a release binary
Browse files Browse the repository at this point in the history
Originally from @ejhayes at #37.

Signed-off-by: Galo Navarro <anglorvaroa@gmail.com>
  • Loading branch information
srvaroa committed Feb 14, 2023
1 parent e44f89d commit f81537c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create Release Binary

on:
release:
types: [created, edited]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.22
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
build_command: make build
overwrite: true
binary_name: action
asset_name: action

0 comments on commit f81537c

Please sign in to comment.