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