-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yaml
61 lines (55 loc) · 1.08 KB
/
.goreleaser.yaml
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
56
57
58
59
60
61
project_name: image2tiles
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/image2tiles
binary: image2tiles
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
- darwin
- windows
ldflags:
- -s -w
- -X main.version={{.Version}}
- -X main.commit={{.ShortCommit}}
- -X main.date={{.Date}}
archives:
- replacements:
darwin: darwin
linux: linux
windows: windows
amd64: x86_64
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
release:
prerelease: auto
footer: |
**Full Changelog**: https://github.com/lvisei/image2tiles/compare/{{ .PreviousTag }}...{{ .Tag }}
changelog:
sort: asc
use: github
filters:
exclude:
- '^docs:'
- '^test:'
- '^chore:'
- Merge pull request
- Merge remote-tracking branch
- Merge branch
groups:
- title: 'New Features'
regexp: "^.*feat:+.*$"
order: 0
- title: 'Bug fixes'
regexp: "^.*fix:+.*$"
order: 10
- title: Other
order: 999