forked from sealdice/sealdice-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
110 lines (104 loc) · 2.36 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
108
109
110
# 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:
- env:
- GO111MODULE=on
- CGO_ENABLED=0
- CGO_FLAGS=-Werror=unused-variable -Werror=implicit-function-declaration -O2 -H=windowsgui
goos:
- linux
- darwin
goarch:
- arm64
- amd64
flags:
- -trimpath
ldflags:
- -s -w -X main.build={{.Version}}
gcflags:
- all="-l" # -B
ignore:
- goos: linux
goarch: 386
- goos: darwin
goarch: arm64
- id: sealdice-core-win64
env:
- GO111MODULE=on
- CGO_ENABLED=1
- CGO_FLAGS=-Werror=unused-variable -Werror=implicit-function-declaration -O2 -H=windowsgui
goos:
- windows
goarch:
- amd64
flags:
- -trimpath
ldflags:
- -s -w -X main.build={{.Version}}
gcflags:
- all="-l" # -B
- id: sealdice-core-win32
env:
- CGO_ENABLED=1
- CGO_FLAGS=-Werror=unused-variable -Werror=implicit-function-declaration -O2 -H=windowsgui
# ldflags:
# -H windowsgui
goos:
- windows
goarch:
- 386
ldflags:
- -s -w -X main.build={{.Version}}
gcflags:
- all="-l" # -B
archives:
- replacements:
darwin: darwin
linux: linux
windows: windows
386: i386
amd64: amd64
format_overrides:
- goos: windows
format: zip
files:
- "SealDice指令手册.html"
- src: data/helpdoc/COC
dst: .
- src: data/helpdoc/DND
dst: .
- src: data/names
dst: .
- src: data/decks/seal.json
dst: .
- src: frontend
dst: .
- src: temp/go-cqhttp_{{ .Os }}_{{ .Arch }}
dst: go-cqhttp
strip_parent: true
checksum:
name_template: 'checksums.txt'
snapshot:
# name_template: "{{ incpatch }}"
name_template: "{{ incpatch .Version }}"
changelog:
sort: asc
groups:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: Others
order: 999
filters:
exclude:
- '^docs:'
- '^test:'