We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a4e082 commit 19bb435Copy full SHA for 19bb435
.github/workflows/goreleaser.yml
@@ -0,0 +1,30 @@
1
+name: goreleaser
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "!*"
7
+ tags:
8
+ - "v*.*.*"
9
10
+jobs:
11
+ goreleaser:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v2
16
+ with:
17
+ fetch-depth: 0
18
19
+ - name: Set up Go
20
+ uses: actions/setup-go@v2
21
22
+ go-version: 1.19
23
24
+ - name: Run GoReleaser
25
+ uses: goreleaser/goreleaser-action@v2
26
27
+ version: latest
28
+ args: release --rm-dist
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments