-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.goreleaser.yml
55 lines (55 loc) · 1.16 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
project_name: chorus
before:
hooks:
- go mod tidy
builds:
- binary: chorctl
dir: tools/chorctl
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ignore:
- goos: darwin
goarch: 386
- goos: darwin
goarch: arm
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
archives:
- name_template: chorctl_{{ .Tag }}_{{ .Os }}_{{ .Arch }}
format_overrides:
- goos: windows
format: zip
files:
- none*
checksum:
name_template: checksums.txt
brews:
- name: chorctl
repository:
owner: clyso
name: homebrew-tap
token: '{{ .Env.BREW_RELEASE_TOKEN }}'
commit_author:
name: clyso_bot
email: [email protected]
commit_msg_template: Brew formula update for chorctl version {{ .Tag }}
folder: Formula
homepage: https://github.com/clyso/chorus
description: Management CLI for chorus service
license: Apache-2.0
test: |
system "#{bin}/chorctl --version"
install: |
bin.install "chorctl"
release:
github:
owner: clyso
name: chorus
extra_files:
- glob: ./standalone/*