We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f5c75b0 + 352dffc commit 96f1206Copy full SHA for 96f1206
.github/workflows/release.yaml
@@ -0,0 +1,24 @@
1
+on:
2
+ release:
3
+ types: [created]
4
+
5
+permissions:
6
+ contents: write
7
+ packages: write
8
9
+jobs:
10
+ release-go-binary:
11
+ name: release Go Binary
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ goos: [linux]
16
+ goarch: [amd64]
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: wangyoucao577/go-release-action@v1
20
+ with:
21
+ github_token: ${{ secrets.GITHUB_TOKEN }}
22
+ goos: ${{ matrix.goos }}
23
+ goarch: ${{ matrix.goarch }}
24
+ goversion: 1.21
.github/workflows/test.yaml
@@ -6,7 +6,7 @@ on:
jobs:
test:
- runs-on: ubuntu-22.04
timeout-minutes: 20
strategy:
fail-fast: false
0 commit comments