We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75ed0d4 commit 86b2a30Copy full SHA for 86b2a30
.github/workflows/release-binary.yml
@@ -0,0 +1,21 @@
1
+# .github/workflows/release.yaml
2
+
3
+on:
4
+ release:
5
+ types: [created]
6
7
+permissions:
8
+ contents: write
9
+ packages: write
10
11
+jobs:
12
+ release-linux-amd64:
13
+ name: release linux/amd64
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: wangyoucao577/go-release-action@v1
18
+ with:
19
+ github_token: ${{ secrets.GITHUB_TOKEN }}
20
+ goos: linux
21
+ goarch: amd64
0 commit comments