forked from justinfx/gofileseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
77 lines (69 loc) · 1.37 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
env:
- CGO_ENABLED=0
- GO111MODULE=on
before:
hooks:
- go mod download
builds:
- id: seqls
main: ./cmd/seqls/
binary: seqls
ldflags: -s -w -X main.Version={{.Version}}
goos:
- windows
- darwin
- linux
ignore:
- goos: darwin
goarch: 386
- id: seqinfo
main: ./cmd/seqinfo/
binary: seqinfo
ldflags: -s -w -X main.Version={{.Version}}
goos:
- windows
- darwin
- linux
ignore:
- goos: darwin
goarch: 386
archives:
- id: default
wrap_in_directory: true
replacements:
386: 32-bit
amd64: 64-bit
darwin: osx
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- CHANGES
- README.md
release:
github:
owner: justinfx
name: gofileseq
draft: true
# You can change the name of the GitHub release.
# This is parsed with the Go template engine and the following variables
# are available:
# - ProjectName
# - Tag
# - Version (Git tag without `v` prefix)
# Default is ``
name_template: "v{{.Version}} Release"
changelog:
filters:
# commit messages matching the regexp listed here will be removed from
# the changelog
# Default is empty
exclude:
- '^docs:'
- typo
- goreleaser
- gitignore
- '[tT]ravis'
- '^ci:'
- '^merge:'