1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-11 14:39:28 +02:00

fix: jsonschema build ignore casing (#2728)

closes #2727

Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2021-12-04 12:32:58 -03:00 committed by GitHub
parent 6774755d8c
commit 3b620f671f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -194,7 +194,10 @@ type BuildHooks struct { // renamed on pro
// IgnoredBuild represents a build ignored by the user.
type IgnoredBuild struct {
Goos, Goarch, Goarm, Gomips string
Goos string `yaml:"goos,omitempty"`
Goarch string `yaml:"goarch,omitempty"`
Goarm string `yaml:"goarm,omitempty"`
Gomips string `yaml:"gomips,omitempty"`
}
// StringArray is a wrapper for an array of strings.