-
Notifications
You must be signed in to change notification settings - Fork 6
/
.goreleaser.yml
53 lines (51 loc) · 1.27 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
# 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 go modules.
- go mod download
# you may remove this if you don't need go generate
- go generate ./...
builds:
- main: ./
env:
- CGO_ENABLED=0
binary: cherryctl
ldflags:
- -X github.com/cherryservers/cherryctl/cmd.Version={{.Version}}
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: 'arm64'
archives:
- format: binary
name_template: "{{ .Binary }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
checksum:
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- homepage: "https://www.cherryservers.com/"
description: "Official Cherry Servers CLI"
license: "MIT"
dependencies:
- name: "go"
type: build
test: |
system "#{bin}/cherryctl -v"
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
repository:
owner: cherryservers
name: homebrew-cherryctl
# https://goreleaser.com/errors/resource-not-accessible-by-integration/
token: "{{ .Env.TAP_TOKEN }}"