Skip to content

Commit

Permalink
wip: workflow to add binaries to releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Skylli202 committed Sep 10, 2024
1 parent 0d9491e commit becf190
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# .github/workflows/release.yaml

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 becf190

Please sign in to comment.