-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yaml
43 lines (43 loc) · 1.12 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
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
main: ./cmd/monoctl
ldflags:
- -X=github.com/finleap-connect/monoctl/internal/version.Version={{.Version}}
- -X=github.com/finleap-connect/monoctl/internal/version.Commit={{.Version}}
- -X=github.com/finleap-connect/monoskope/pkg/logger.logMode=noop
archives:
- replacements:
darwin: osx
windows: win
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
brews:
- name: monoctl
description: CLI for Monoskope. AuthN & AuthZ for Kubernetes multi-cluster, multi-cloud environments.
homepage: https://github.com/finleap-connect/monoctl
license: "Apache"
tap:
owner: finleap-connect
name: homebrew-monoctl