forked from splunk/qbec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
72 lines (68 loc) · 1.66 KB
/
.goreleaser.yaml
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
70
71
72
before:
hooks:
- make release-notes
builds:
- id: qbec
binary: qbec
main: ./
ldflags:
- -X github.com/splunk/qbec/internal/commands.version={{.Version}} -X github.com/splunk/qbec/internal/commands.commit={{.Commit}} -X github.com/splunk/qbec/internal/commands.goVersion={{.Env.GO_VERSION}}
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: arm64
- id: jsonnet-qbec
binary: jsonnet-qbec
main: cmd/jsonnet-qbec/main.go
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: arm64
archives:
- name_template: "{{.ProjectName}}-{{.Os}}-{{.Arch}}"
format: tar.gz
format_overrides:
- goos: windows
format: zip
brews:
- name: qbec
tap:
owner: splunk
name: homebrew-tap
url_template: https://github.com/splunk/qbec/releases/download/{{.Tag}}/{{.ArtifactName}}
homepage: "https://qbec.io/"
description: Qbec (pronounced like the Canadian province) is a CLI tool that allows you to create Kubernetes objects on multiple Kubernetes clusters or namespaces configured correctly for the target environment in question.
test: |
system "#{bin}/qbec version"
install: |
bin.install "qbec"
checksum:
name_template: "sha256-checksums.txt"
snapshot:
name_template: "{{.Version}}-next"
changelog:
sort: asc
filters:
exclude:
- "README.md"
- ".gitignore"
- "^site:"
- "^examples:"
- Merge pull request
- Merge branch