mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-17 20:47:50 +02:00
fix: actually support arm (#1140)
This commit is contained in:
parent
2c08ab87a1
commit
ccbd79250e
@ -122,7 +122,11 @@ func doRun(ctx *context.Context, brew config.Homebrew, client client.Client) err
|
||||
artifact.ByGoos("linux"),
|
||||
),
|
||||
artifact.ByFormats("zip", "tar.gz"),
|
||||
artifact.ByGoarch("amd64"),
|
||||
artifact.Or(
|
||||
artifact.ByGoarch("amd64"),
|
||||
artifact.ByGoarch("arm64"),
|
||||
artifact.ByGoarch("arm"),
|
||||
),
|
||||
artifact.ByType(artifact.UploadableArchive),
|
||||
}
|
||||
if len(brew.IDs) > 0 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user