1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

improved GOARM docs

This commit is contained in:
Carlos Alexandro Becker 2017-04-24 21:21:45 -03:00 committed by GitHub
parent f6bede298b
commit d6c91eb100

View File

@ -107,9 +107,6 @@ build:
- linux
goarch:
- amd64
goarm:
- 6
- 7
# Archive customization
archive:
format: tar.gz
@ -227,6 +224,15 @@ build:
# Defaults are 386 and amd64
goarch:
- amd64
- arm
- arm64
# GOARM to build in when GOARCH is arm.
# For more info refer to https://golang.org/doc/install/source#environment
# Defaults are 6
goarm:
- 6
- 7
# Hooks can be used to customize the final binary, for example, to run
# generator or whatever you want.