Skip to content

Commit

Permalink
feat: add release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
NGTmeaty committed Jan 10, 2024
1 parent 78c9471 commit 47fd847
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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@v3
- uses: wangyoucao577/go-release-action@af4a9db7b0ee3cf602cb75541d72bf568a99da4f #release/rel-v1.42
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
goversion: 1.21
compress_assets: OFF

0 comments on commit 47fd847

Please sign in to comment.