forked from kubeshop/testkube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
55 lines (53 loc) · 1.47 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
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/kubectl-testkube
binary: kubectl-testkube
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ldflags:
- -s -w -X main.version={{.Version}}
- -X main.commit={{.Commit}}
- -X main.date={{.Date}}
- -X main.builtBy=goreleaser
- -X github.com/kubeshop/testkube/pkg/analytics.testkubeMeasurementID={{.Env.ANALYTICS_TRACKING_ID}}
- -X github.com/kubeshop/testkube/pkg/analytics.testkubeApiSecret={{.Env.ANALYTICS_API_KEY}}
archives:
- replacements:
darwin: macOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: "checksums.txt"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
release:
# Create a thread in the General category in the repo's discussion tab.
discussion_category_name: General
# Tags that have the format v1.0.0-rc1 will mark the release as a pre-release (i.e. not ready for production)
# Other tags will be marked as ready for production
prerelease: auto
brews:
- tap:
owner: kubeshop
name: homebrew-testkube
description: Testkube - your somewhat opinionated and friendly Kubernetes testing framework!
homepage: https://testkube.io
license: "MIT"
nfpms:
- maintainer: Testkube team
license: "MIT"
formats:
- deb
description: Testkube - your somewhat opinionated and friendly Kubernetes testing framework!