Skip to content

Commit efe5e85

Browse files
committed
Add release workflow
1 parent 03aa430 commit efe5e85

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/release.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
release:
3+
types: [created]
4+
5+
permissions:
6+
contents: write
7+
packages: write
8+
9+
jobs:
10+
release-linux-amd64:
11+
name: release linux/amd64
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: wangyoucao577/go-release-action@v1
16+
with:
17+
github_token: ${{ secrets.GITHUB_TOKEN }}
18+
goos: linux
19+
goarch: amd64

0 commit comments

Comments
 (0)