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