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 4cdac7d commit f213029Copy full SHA for f213029
.github/workflows/goreleaser.yml
@@ -0,0 +1,28 @@
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
+ - name: Run GoReleaser
22
+ uses: goreleaser/goreleaser-action@v6
23
24
+ distribution: goreleaser
25
+ version: "~> v2"
26
+ args: release --clean
27
+ env:
28
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments