File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,18 @@ builds:
10
10
- arm
11
11
goarm :
12
12
- 7
13
+ - 6
13
14
goos :
14
15
- windows
15
16
- linux
16
17
- darwin
17
18
ignore :
18
19
- goos : windows
19
20
goarch : arm
20
- goarm : 7
21
+ - goos : windows
22
+ goarch : arm64
23
+ - goos : darwin
24
+ goarch : arm
21
25
hooks :
22
26
post :
23
27
- upx "{{ .Path }}"
@@ -29,7 +33,7 @@ builds:
29
33
- -s
30
34
dist : release
31
35
archives :
32
- - name_template : " {{ .Binary }}-{{ .Os }}-{{ .Arch }}"
36
+ - name_template : " {{ .Binary }}-{{ .Os }}-{{ .Arch }}{{ .Arm }} "
33
37
replacements :
34
38
darwin : darwin
35
39
linux : linux
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ func loadConfig() (err error) {
33
33
viper .SetConfigName ("hd" )
34
34
viper .SetConfigType ("yaml" )
35
35
viper .AddConfigPath ("$HOME/.config" )
36
- viper .AddConfigPath ("." )
37
36
if err = viper .ReadInConfig (); err != nil {
38
37
if _ , ok := err .(viper.ConfigFileNotFoundError ); ok {
39
38
// Config file not found; ignore error if desired
You can’t perform that action at this time.
0 commit comments