-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
40 lines (39 loc) · 920 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
before:
hooks:
- task test
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
main: ./cmd/ma
ldflags:
- -s -w -X {{.ModulePath}}.buildVersion={{.Version}} -X {{.ModulePath}}.buildCommit={{.ShortCommit}} -X {{.ModulePath}}.buildTime={{.Date}} -X {{.ModulePath}}.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: ma
homepage: https://github.com/bzimmer/ma
description: Simple tools for managing media files with SmugMug
license: MIT
commit_author:
name: bzimmer
email: [email protected]
repository:
owner: bzimmer
name: homebrew-tap
skip_upload: auto
install: bin.install "ma"