generated from replicatedhq/krew-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.goreleaser.yml
42 lines (42 loc) · 837 Bytes
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
project_name: pod-lens
release:
github:
owner: sunny0826
name: kubectl-pod-lens
builds:
- id: pod-lens
goos:
- linux
- windows
- darwin
goarch:
- amd64
- "386"
- arm64
env:
- CGO_ENABLED=0
- GO111MODULE=on
main: cmd/plugin/main.go
ldflags: -s -w
-X github.com/sunny0826/kubectl-pod-lens/pkg/version.version=
archives:
- id: pod-lens
builds:
- pod-lens
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
# .goreleaser.yml
changelog:
use: github
abbrev: -1
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: 'Bug fixes'
regexp: '^.*?bug(\([[:word:]]+\))??!?:.+$'
order: 1
- title: Others
order: 999