1
+ version : 2
2
+
3
+ project_name : kl
4
+
5
+ before :
6
+ hooks :
7
+ - go mod tidy
8
+
9
+ builds :
10
+ - binary : kl
11
+ env :
12
+ - CGO_ENABLED=0
13
+ goos :
14
+ - darwin
15
+ - freebsd
16
+ - linux
17
+ - windows
18
+
19
+ archives :
20
+ - format_overrides :
21
+ - goos : windows
22
+ format : zip
23
+ name_template : >-
24
+ {{ .ProjectName }}_{{ .Version }}_
25
+ {{- if eq .Os "darwin" }}Darwin
26
+ {{- else if eq .Os "linux" }}Linux
27
+ {{- else if eq .Os "windows" }}Windows
28
+ {{- else }}{{ .Os }}{{ end }}_
29
+ {{- if eq .Arch "amd64" }}x86_64
30
+ {{- else if eq .Arch "386" }}i386
31
+ {{- else }}{{ .Arch }}{{ end }}
32
+
33
+ checksum :
34
+ name_template : ' checksums.txt'
35
+
36
+ snapshot :
37
+ name_template : " {{ incpatch .Version }}-next"
38
+
39
+ changelog :
40
+ sort : asc
41
+ filters :
42
+ exclude :
43
+ - ' ^docs:'
44
+ - ' ^test:'
45
+
46
+ universal_binaries :
47
+ - replace : true
48
+
49
+ release :
50
+ github :
51
+ owner : robinovitch61
52
+ name : kl
53
+
54
+ brews :
55
+ - name : kl
56
+ homepage : https://github.com/robinovitch61/kl
57
+ description : " An interactive Kubernetes log viewer for your terminal."
58
+ directory : Formula
59
+ commit_author :
60
+ name : " Leo Robinovitch"
61
+
62
+ commit_msg_template : " Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
63
+ repository :
64
+ owner : robinovitch61
65
+ name : homebrew-tap
66
+ branch : main
67
+ token : " {{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
68
+
69
+ aurs :
70
+ - name : " kl-bin"
71
+ homepage : " https://github.com/robinovitch61/kl"
72
+ description : " An interactive Kubernetes log viewer for your terminal."
73
+ maintainers :
74
+ -
" Leo Robinovitch <[email protected] >"
75
+ license : " MIT"
76
+ private_key : " {{ .Env.AUR_KEY }}"
77
+ git_url :
" ssh://[email protected] /kl-bin.git"
78
+ depends :
79
+ - " glibc"
80
+ commit_author :
81
+ name : " Leo Robinovitch"
82
+
83
+ skip_upload : auto
84
+
85
+ nix :
86
+ - name : kl
87
+ commit_author :
88
+ name : " Leo Robinovitch"
89
+
90
+ homepage : " https://github.com/robinovitch61/kl"
91
+ description : " An interactive Kubernetes log viewer for your terminal."
92
+ license : " mit" # must be lowercase
93
+ skip_upload : auto
94
+ repository :
95
+ owner : robinovitch61
96
+ name : nur-packages
97
+ branch : main
98
+ token : " {{ .Env.NUR_PACKAGES_GITHUB_TOKEN }}"
99
+
100
+ winget :
101
+ - name : kl
102
+ publisher : robinovitch61
103
+ license : MIT
104
+ copyright : " Leo Robinovitch"
105
+ homepage : https://github.com/robinovitch61/kl
106
+ short_description : " An interactive Kubernetes log viewer for your terminal."
107
+ package_identifier : " robinovitch61.kl"
108
+ repository :
109
+ owner : " robinovitch61"
110
+ token : " {{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
111
+ name : winget-pkgs
112
+ branch : " {{.ProjectName}}-{{.Version}}"
113
+ pull_request :
114
+ enabled : true
115
+ draft : false
116
+ base :
117
+ owner : microsoft
118
+ name : winget-pkgs
119
+ branch : master
120
+
121
+ scoops :
122
+ - repository :
123
+ owner : " robinovitch61"
124
+ name : scoop-bucket
125
+ token : " {{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
126
+ commit_author :
127
+ name : goreleaserbot
128
+
129
+ homepage : https://github.com/robinovitch61/kl
130
+ description : " An interactive Kubernetes log viewer for your terminal."
131
+ license : MIT
132
+
133
+ chocolateys :
134
+ - owners : " Leo Robinovitch"
135
+ authors : " Leo Robinovitch"
136
+ project_url : https://github.com/robinovitch61/kl
137
+ url_template : " https://github.com/robinovitch61/kl/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
138
+ license_url : https://github.com/robinovitch61/kl/blob/main/LICENSE
139
+ require_license_acceptance : false
140
+ project_source_url : https://github.com/robinovitch61/kl
141
+ docs_url : https://github.com/robinovitch61/kl/blob/main/README.md
142
+ bug_tracker_url : https://github.com/robinovitch61/kl/issues
143
+ tags : " kl kubernetes k9s kubectl"
144
+ summary : " An interactive Kubernetes log viewer for your terminal."
145
+ description : |
146
+ # An interactive Kubernetes log viewer for your terminal.
147
+
148
+ https://github.com/robinovitch61/kl for installation and usage.
149
+ release_notes : " https://github.com/robinovitch61/kl/releases/tag/v{{ .Version }}"
150
+ api_key : " {{ .Env.CHOCOLATEY_API_KEY }}"
151
+ source_repo : " https://push.chocolatey.org/"
152
+ skip_publish : false
153
+
154
+ gomod :
155
+ proxy : true
0 commit comments