We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e757cc8 commit 6ad0995Copy full SHA for 6ad0995
.github/workflows/release.yaml
@@ -0,0 +1,36 @@
1
+# .github/workflows/release.yml
2
+name: goreleaser
3
+
4
+on:
5
+ push:
6
+ # run only against tags
7
+ tags:
8
+ - "*"
9
10
+permissions:
11
+ contents: write
12
+ # packages: write
13
14
+jobs:
15
+ goreleaser:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ -
19
+ name: Checkout
20
+ uses: actions/checkout@v4
21
+ with:
22
+ fetch-depth: 0
23
24
+ name: Set up Go
25
+ uses: actions/setup-go@v4
26
27
+ go-version: stable
28
29
+ name: Run GoReleaser
30
+ uses: goreleaser/goreleaser-action@v5
31
32
+ distribution: goreleaser
33
+ version: latest
34
+ args: release --clean
35
+ env:
36
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments