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

docs: improve a little bit

This commit is contained in:
Carlos Alexandro Becker 2024-11-29 13:06:52 -03:00
parent a23c9df16b
commit 0357cfecc5
No known key found for this signature in database

View File

@ -273,9 +273,13 @@ builds:
overrides: overrides:
- goos: darwin - goos: darwin
goarch: amd64 goarch: amd64
goamd64: v1 # Note: if you leave this goamd64: v1
goarm: "" goarm: ""
goarm64: ""
gomips: "" gomips: ""
go386: ""
goriscv64: ""
goppc64: ""
ldflags: ldflags:
- foo - foo
tags: tags:
@ -290,7 +294,8 @@ builds:
!!! warning "GOAMD64, GORISCV64, GOPPC64, GO386, GOARM, GOARM64" !!! warning "GOAMD64, GORISCV64, GOPPC64, GO386, GOARM, GOARM64"
You usually will need to specify the complete target in places like `targets` and `overrides`. You usually will need to specify the complete target in places like
`targets` and `overrides`.
This includes the `_{goamd64}` suffix, as well as the other This includes the `_{goamd64}` suffix, as well as the other
GOARCH-specific values. GOARCH-specific values.