From: Bjørn Erik Pedersen Date: Sat, 30 Oct 2021 09:25:04 +0000 (+0200) Subject: releaser: Only build amd64 binary for freebsd, netbsd, openbsd, dragonfly X-Git-Tag: v0.89.0~12 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0f248606d5a027c6cd3766d8b32cc1b1e529422b;p=brevno-suite%2Fhugo releaser: Only build amd64 binary for freebsd, netbsd, openbsd, dragonfly Fixes #9102 --- diff --git a/goreleaser.yml b/goreleaser.yml index d6aba296..af887e51 100644 --- a/goreleaser.yml +++ b/goreleaser.yml @@ -19,10 +19,6 @@ builds: - darwin - linux - windows - - freebsd - - netbsd - - openbsd - - dragonfly goarch: - amd64 - 386 @@ -33,7 +29,22 @@ builds: ignore: - goos: darwin goarch: 386 - + - + binary: hugo + id: hugo_unix + ldflags: -s -w -X github.com/gohugoio/hugo/common/hugo.buildDate={{.Date}} -X github.com/gohugoio/hugo/common/hugo.commitHash={{ .ShortCommit }} -X github.com/gohugoio/hugo/common/hugo.vendorInfo=gohugoio + env: + - CGO_ENABLED=0 + flags: + - -buildmode + - exe + goos: + - freebsd + - netbsd + - openbsd + - dragonfly + goarch: + - amd64 - binary: hugo id: hugo_extended_windows @@ -92,7 +103,7 @@ release: archives: - id: "hugo" - builds: ['hugo'] + builds: ['hugo', 'hugo_unix'] format: tar.gz format_overrides: - goos: windows