forked from ejoffe/spr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
45 lines (44 loc) · 992 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
42
43
44
45
version: 2
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/spr
id: spr
binary: git-spr
goarch:
- arm64
goos:
- darwin
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.CommitDate}} -X main.builtBy=gorelease
- main: ./cmd/amend
id: amend
binary: git-amend
goarch:
- arm64
goos:
- darwin
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.CommitDate}} -X main.builtBy=gorelease
- main: ./cmd/reword
id: reword
binary: spr_reword_helper
goarch:
- arm64
goos:
- darwin
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.CommitDate}} -X main.builtBy=gorelease
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'