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