-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.goreleaser.yaml
107 lines (107 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- skip: true
- id: dump
dir: ./examples/dump
# main: ./examples/dump
binary: wtgDump
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
# List of combinations of GOOS + GOARCH + GOARM to ignore.
# Default is empty.
ignore:
- goos: windows
goarch: arm64
- id: owm2dot
dir: ./examples/owm2dot
# main: ./examples/owm2dot
binary: owm2dot
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ignore:
- goos: windows
goarch: arm64
- id: owm2svg
dir: ./examples/owm2svg
#main: ./examples/owm2svg
binary: owm2svg
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ignore:
- goos: windows
goarch: arm64
- id: wtg2dot
dir: ./examples/wtg2dot
#main: ./examples/wtg2dot
binary: wtg2dot
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ignore:
- goos: windows
goarch: arm64
- id: wtg2svglive
dir: ./examples/wtg2svglive
#main: ./examples/wtg2svglive
binary: wtg2svglive
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ignore:
- goos: windows
goarch: arm64
- id: wtg2svg
dir: ./examples/wtg2svg
#main: ./examples/wtg2svg
binary: wtg2svg
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ignore:
- goos: windows
goarch: arm64
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'