We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 58f70a5 + 83365cd commit f850c81Copy full SHA for f850c81
1 file changed
.github/workflows/release.yml
@@ -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
22
23
24
25
+ github_token: ${{ secrets.GITHUB_TOKEN }}
26
+ goos: windows
27
0 commit comments