Skip to content

Commit f850c81

Browse files
author
Sergey Kharitontsev-Beglov
committed
Merge remote-tracking branch 'origin/master'
2 parents 58f70a5 + 83365cd commit f850c81

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# .github/workflows/release.yaml
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
release-linux-amd64:
9+
name: release linux/amd64
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: wangyoucao577/go-release-action@v1.20
14+
with:
15+
github_token: ${{ secrets.TOKEN }}
16+
goos: linux
17+
goarch: amd64
18+
release-windows-amd64:
19+
name: windows/amd64
20+
runs-on: windows-latest
21+
steps:
22+
- uses: actions/checkout@v2
23+
- uses: wangyoucao577/go-release-action@v1.20
24+
with:
25+
github_token: ${{ secrets.GITHUB_TOKEN }}
26+
goos: windows
27+
goarch: amd64

0 commit comments

Comments
 (0)