We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 71afb74 + ff1ee41 commit 4a2205cCopy full SHA for 4a2205c
.github/workflows/release.yaml
@@ -0,0 +1,27 @@
1
+name: goreleaser
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
+jobs:
8
+ goreleaser:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ -
12
+ name: Checkout
13
+ uses: actions/checkout@v3
14
+ with:
15
+ fetch-depth: 0
16
17
+ name: Set up Go
18
+ uses: actions/setup-go@v3
19
20
+ name: Run GoReleaser
21
+ uses: goreleaser/goreleaser-action@v3
22
23
+ distribution: goreleaser
24
+ version: latest
25
+ args: release --rm-dist
26
+ env:
27
+ GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
.goreleaser.yaml
@@ -28,3 +28,9 @@ changelog:
28
exclude:
29
- '^docs:'
30
- '^test:'
31
+brews:
32
+- name: kubefirst
33
+ homepage: https://github.com/kubefirst/kubefirst
34
+ tap:
35
+ owner: kubefirst
36
+ name: homebrew-tools
0 commit comments