-
Notifications
You must be signed in to change notification settings - Fork 9
/
.goreleaser.yml
70 lines (69 loc) · 1.31 KB
/
.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
before:
hooks:
- go mod download
builds:
- env:
- GO111MODULE=on
ldflags:
- -s -w -X {{.Env.LD_FLAGS_STATIC}}
goos:
- darwin
- linux
- windows
goarch:
- amd64
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
files:
- nOnE*
checksum:
name_template: 'checksums.txt'
nfpms:
- vendor: jbvm.io
homepage: https://www.jbvm.io/
maintainer: Jimmy Bonds <[[email protected]]>
description: CLI for Apache Kafka Management
license: Apache 2.0
formats:
- deb
- rpm
release:
disable: false
snapshot:
name_template: "{{ .Tag }}"
changelog:
skip: true
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
dockers:
- image_templates:
- "docker.io/jbvmio/kafkactl:{{ .Tag }}"
- "docker.io/jbvmio/kafkactl:latest"
goos: linux
goarch: amd64
dockerfile: kafkactl.1.dockerfile
build_flag_templates:
brews:
- github:
owner: jbvmio
name: homebrew-tap
commit_author:
name: goreleaserbot
email: [email protected]
folder: Formula
homepage: "http://www.jbvm.io/kafkactl"
description: "CLI for Apache Kafka and Zookeeper Management."
test: |
system "#{bin}/kafkactl version"