1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-20 03:59:26 +02:00
This commit is contained in:
Carlos Alexandro Becker 2017-01-03 07:43:55 -02:00
parent 5c5c37897b
commit 4369eb3235
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -16,7 +16,7 @@ var filePatterns = []string{"LICENCE*", "LICENSE*", "README*", "CHANGELOG*"}
// Homebrew contains the brew section // Homebrew contains the brew section
type Homebrew struct { type Homebrew struct {
Repo string Repo string
Token string `yaml:"_"` Token string `yaml:"-"`
Caveats string Caveats string
} }
@ -40,9 +40,9 @@ type ProjectConfig struct {
BinaryName string `yaml:"binary_name"` BinaryName string `yaml:"binary_name"`
Files []string Files []string
Brew Homebrew Brew Homebrew
Token string `yaml:"_"` Token string `yaml:"-"`
Build BuildConfig Build BuildConfig
Git GitInfo `yaml:"_"` Git GitInfo `yaml:"-"`
} }
// Load config file // Load config file