We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93fdfc5 commit ba723d4Copy full SHA for ba723d4
.github/workflows/main.yml
@@ -0,0 +1,27 @@
1
+name: goreleaser
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ tags:
7
+ - "*"
8
9
+jobs:
10
+ goreleaser:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
+ with:
16
+ fetch-depth: 0
17
+ - name: Set up Go
18
+ uses: actions/setup-go@v3
19
20
+ go-version: "1.20"
21
+ - name: Run GoReleaser
22
+ uses: goreleaser/goreleaser-action@v2
23
24
+ version: latest
25
+ args: release --clean
26
+ env:
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.goreleaser.yml
@@ -0,0 +1,2 @@
+builds:
+ - skip: true
0 commit comments