Skip to content

Commit aa249af

Browse files
authoredAug 13, 2021
add release action
1 parent 04c1452 commit aa249af

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎.github/workflows/release.yml

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

0 commit comments

Comments
 (0)
Please sign in to comment.