We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b2e33f8 + 5ba9220 commit 13e2c6eCopy full SHA for 13e2c6e
.github/workflows/goreleaser
@@ -0,0 +1,31 @@
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
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
+ - name: Set up Go
20
+ uses: actions/setup-go@v5
21
22
+ go-version: stable
23
24
+ - name: Run GoReleaser
25
+ uses: goreleaser/goreleaser-action@v6
26
27
+ distribution: goreleaser
28
+ version: "~> v2"
29
+ args: release --clean
30
+ env:
31
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments