File tree 2 files changed +13
-5
lines changed
2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 30
30
uses : goreleaser/goreleaser-action@v4
31
31
with :
32
32
version : latest
33
- args : release --rm-dist
33
+ args : release --clean
34
34
env :
35
35
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -19,10 +19,18 @@ dockers:
19
19
extra_files :
20
20
- assets/docker-login.sh
21
21
archives :
22
- - replacements :
23
- 386 : i386
24
- amd64 : x86_64
25
- name_template : " {{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
22
+ - format : tar.gz
23
+ name_template : >-
24
+ {{- .Binary }}_
25
+ {{- .Version }}_
26
+ {{- .Os }}_
27
+ {{- if eq .Arch "amd64" }}x86_64
28
+ {{- else if eq .Arch "386" }}i386
29
+ {{- else }}{{ .Arch }}{{ end }}
30
+ {{- if .Arm }}v{{ .Arm }}{{ end -}}
31
+ format_overrides :
32
+ - goos : windows
33
+ format : zip
26
34
files :
27
35
- README.md
28
36
checksum :
You can’t perform that action at this time.
0 commit comments