We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d80359 commit 3fcfb92Copy full SHA for 3fcfb92
1 file changed
.github/workflows/goreleaser.yaml
@@ -0,0 +1,30 @@
1
+name: goreleaser
2
+
3
+on:
4
+ push:
5
+ tags: [ 'v[0-9]+.[0-9]+.[0-9]+', 'v[0-9]+.[0-9]+.[0-9]+-*' ]
6
7
+permissions:
8
+ contents: write
9
10
+jobs:
11
+ goreleaser:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ -
15
+ name: Checkout
16
+ uses: actions/checkout@v5
17
+ with:
18
+ fetch-depth: 0
19
20
+ name: Set up Go
21
+ uses: actions/setup-go@v5
22
23
+ name: Run GoReleaser
24
+ uses: goreleaser/goreleaser-action@v6
25
26
+ distribution: goreleaser
27
+ version: '~> v2'
28
+ args: release --clean
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments