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 2154014 commit 5b4e798Copy full SHA for 5b4e798
.github/workflows/goreleaser.yml
@@ -0,0 +1,33 @@
1
+name: goreleaser
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ goreleaser:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ -
16
+ name: Checkout
17
+ uses: actions/checkout@v2
18
+ with:
19
+ fetch-depth: 0
20
21
+ name: Set up Go
22
+ uses: actions/setup-go@v2
23
24
+ go-version: 1.17
25
26
+ name: Run GoReleaser
27
+ uses: goreleaser/goreleaser-action@v2
28
29
+ distribution: goreleaser
30
+ version: latest
31
+ args: release --rm-dist
32
+ env:
33
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments