Skip to content

Commit 7a50e05

Browse files
committed
fix: release for armv7l
Closes #1299
1 parent 2f0e8eb commit 7a50e05

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.goreleaser.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,17 @@ builds:
2121
goos:
2222
- linux
2323
- darwin
24+
goarch:
25+
- 386
26+
- amd64
27+
- arm64
28+
- arm
29+
goarm:
30+
- 7
2431
archives:
2532
- files:
2633
- no-files-will-match-* # Glob that does not match to create archive with only binaries.
27-
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
34+
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if eq .Arch "arm" }}v{{ .Arm }}l{{ end }}'
2835
snapshot:
2936
name_template: "{{ .Env.EDGE_TAG }}"
3037
checksum:

0 commit comments

Comments
 (0)