Skip to content

Commit 4a2205c

Browse files
committed
Merge branch 'main' of github.com:kubefirst/kubefirst
2 parents 71afb74 + ff1ee41 commit 4a2205c

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/release.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -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+
with:
23+
distribution: goreleaser
24+
version: latest
25+
args: release --rm-dist
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

.goreleaser.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,9 @@ changelog:
2828
exclude:
2929
- '^docs:'
3030
- '^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

Comments
 (0)