-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yaml
69 lines (60 loc) · 1.49 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
project_name: kubectl-tekton
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/tekton.go
binary: tekton
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
archives:
- format: tar.gz
name_template: "{{ .Binary }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
files:
- README.md
- LICENSE*
checksum:
disable: true
name_template: "{{ .ProjectName }}-{{ .Version }}-checksums.txt"
algorithm: sha256
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
use: github
filters:
exclude:
- '^docs:'
- '^test:'
release:
name_template: "v{{ .Version }}"
prerelease: auto
make_latest: true
header: "Tekton Plugin v{{ .Version }}"
source:
enabled: false
krews:
- name: tekton
url_template: "https://github.com/{{ .Env.GITHUB_REPOSITORY }}/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: Sayan Biswas
email: [email protected]
commit_msg_template: "Krew plugin update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://github.com/{{ .Env.GITHUB_REPOSITORY }}"
description: "Kubectl plugin to query tekton resources"
short_description: "Kubectl plugin to query tekton resources"
caveats: "kubectl tekton --help"
skip_upload: false
repository:
owner: "{{ .Env.GITHUB_OWNER }}"
name: "{{ base .Env.GITHUB_REPOSITORY }}"