-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yml
64 lines (64 loc) · 1.5 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
project_name: meroxa
builds:
- env:
- CGO_ENABLED=0
flags:
- -mod=vendor
main: cmd/meroxa/main.go
goos:
- darwin
- linux
- windows
archives:
- files:
- etc/*
- LICENSE
- README.md
- docs/*
brews:
- tap:
owner: meroxa
name: homebrew-taps
commit_author:
name: meroxa-machine
email: machine@meroxa.io
folder: Formula
homepage: https://meroxa.io
description: The Meroxa CLI
license: "Apache 2.0"
custom_block: |
head "https://github.com/meroxa/cli.git"
test: |
shell_output("#{bin}/meroxa version").match(/{{ replace .Tag "v" "" }}/)
install: |-
bin.install "meroxa"
prefix.install_metafiles
bash_completion.install "etc/completion/meroxa.completion.sh"
zsh_completion.install "etc/completion/meroxa.completion.zsh" => "meroxa"
fish_completion.install "etc/completion/meroxa.completion.fish"
man.install "etc/man/man1"
scoops:
-
name: meroxa
repository:
owner: meroxa
name: scoop-manifests
branch: main
folder: meroxa
homepage: https://meroxa.io
description: The Meroxa CLI
license: "Apache 2.0"
commit_author:
name: meroxa-machine
email: machine@meroxa.io
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'