Skip to content

Commit

Permalink
Merge pull request #12 from HilkopterBob/binary-release
Browse files Browse the repository at this point in the history
ci: add release workflow
  • Loading branch information
HilkopterBob authored Aug 15, 2024
2 parents c9b56ef + 6a88107 commit 028cd3a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release-binary.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
release:
types: [created]

permissions:
contents: write
packages: write

jobs:
release-linux-amd64:
name: release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64

0 comments on commit 028cd3a

Please sign in to comment.