-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
41 lines (40 loc) · 949 Bytes
/
.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
before:
hooks:
- task test
builds:
- env:
- CGO_ENABLED=0
- PKG={{.ModulePath}}/version
goos:
- linux
- windows
- darwin
main: ./cmd/gravl
ldflags:
- -s -w -X {{.Env.PKG}}.BuildVersion={{.Version}} -X {{.Env.PKG}}.BuildCommit={{.ShortCommit}} -X {{.Env.PKG}}.BuildTime={{.Date}} -X {{.Env.PKG}}.BuildBuilder=goreleaser
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^Merge pull request"
announce:
skip: "true"
brews:
- name: gravl
homepage: https://github.com/bzimmer/gravl
description: Command line clients for activity-related services
license: MIT
commit_author:
name: bzimmer
email: bzimmer@ziclix.com
tap:
owner: bzimmer
name: homebrew-tap
skip_upload: auto
install: bin.install "gravl"