File tree Expand file tree Collapse file tree 2 files changed +66
-9
lines changed Expand file tree Collapse file tree 2 files changed +66
-9
lines changed Original file line number Diff line number Diff line change @@ -9,28 +9,23 @@ builds:
9
9
goos :
10
10
- linux
11
11
- windows
12
- - darwin
13
12
goarch :
14
13
- arm
15
14
- arm64
16
- - 386
15
+ - ' 386'
17
16
- amd64
18
17
- mips
19
18
- mipsle
20
- ignore :
21
- - goos : windows
22
- goarch : arm
23
- - goos : windows
24
- goarch : arm64
19
+
25
20
archives :
26
- - name_template : " status-client_ {{ .Os }}_{{ .Arch }}"
21
+ - name_template : ' {{ .ProjectName }}_{{ . Os }}_{{ .Arch }}'
27
22
format_overrides :
28
23
- goos : windows
29
24
format : zip
30
25
checksum :
31
26
name_template : ' checksums.txt'
32
27
snapshot :
33
- name_template : " {{ .Tag }}-next"
28
+ name_template : ' {{ .Tag }}-next'
34
29
changelog :
35
30
sort : asc
36
31
filters :
Original file line number Diff line number Diff line change
1
+ project_name : status-client
2
+ before :
3
+ hooks :
4
+ - go mod tidy
5
+ builds :
6
+ - id : default-build
7
+ main : ./cmd/client
8
+ env :
9
+ - CGO_ENABLED=0
10
+ goos :
11
+ - linux
12
+ - windows
13
+ goarch :
14
+ - arm
15
+ - arm64
16
+ - ' 386'
17
+ - amd64
18
+ - mips
19
+ - mipsle
20
+
21
+ - id : darwin-amd64-build
22
+ main : ./cmd/client
23
+ env :
24
+ - CGO_ENABLED=1
25
+ - PKG_CONFIG_SYSROOT_DIR=/sysroot/macos/amd64
26
+ - PKG_CONFIG_PATH=/sysroot/macos/amd64/usr/local/lib/pkgconfig
27
+ - CC=o64-clang
28
+ - CXX=o64-clang++
29
+ goos :
30
+ - darwin
31
+ goarch :
32
+ - amd64
33
+
34
+ - id : darwin-arm64-build
35
+ main : ./cmd/client
36
+ env :
37
+ - CGO_ENABLED=1
38
+ - PKG_CONFIG_SYSROOT_DIR=/sysroot/macos/arm64
39
+ - PKG_CONFIG_PATH=/sysroot/macos/arm64/usr/local/lib/pkgconfig
40
+ - CC=o64-clang
41
+ - CXX=o64-clang++
42
+ goos :
43
+ - darwin
44
+ goarch :
45
+ - arm64
46
+
47
+ archives :
48
+ - name_template : ' {{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
49
+ format_overrides :
50
+ - goos : windows
51
+ format : zip
52
+ checksum :
53
+ name_template : ' checksums.txt'
54
+ snapshot :
55
+ name_template : ' {{ .Tag }}-next'
56
+ changelog :
57
+ sort : asc
58
+ filters :
59
+ exclude :
60
+ - ' ^docs:'
61
+ - ' ^test:'
62
+ - ' ^ci:'
You can’t perform that action at this time.
0 commit comments