This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
forked from kudobuilder/kuttl
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yml
79 lines (77 loc) · 1.7 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
70
71
72
73
74
75
76
77
78
79
env:
- GO111MODULE=on
- CGO_ENABLED=0
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
# you may remove this if you don't use vgo
- go mod download
builds:
- id: "kubectl-kuttl"
binary: kubectl-kuttl
main: cmd/kubectl-kuttl/main.go
ldflags:
- -s -w -X github.com/kyverno/kuttl/pkg/version.gitVersion={{ .Version }} -X github.com/kyverno/kuttl/pkg/version.gitCommit={{ .ShortCommit }} -X github.com/kyverno/kuttl/pkg/version.buildDate={{ .Date }}
goos:
- linux
- darwin
goarch:
- 386
- amd64
- arm
- arm64
- ppc64le
- s390x
archives:
- id: kubectl-kuttl-tarball
builds:
- kubectl-kuttl
replacements:
386: i386
amd64: x86_64
format: tar.gz
- id: binaries
builds:
- manager
- kubectl-kuttl
replacements:
386: i386
amd64: x86_64
format: binary
brews:
- name: kuttl-cli
ids:
- kubectl-kuttl-tarball
tap:
owner: kyverno
name: homebrew-tap
commit_author:
name: kudoreleasebot
email: [email protected]
skip_upload: auto
folder: Formula
homepage: https://kuttl.dev
description: Interact with KUTTL via the kubectl plugin
dependencies:
- kubernetes-cli
install: |
bin.install "kubectl-kuttl"
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-next"
release:
github:
owner: kyverno
name: kuttl
draft: false
prerelease: auto
name_template: "{{.ProjectName}}-v{{.Version}}"
disable: false
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"