1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/config/config.go
2017-02-22 09:25:43 -03:00

74 lines
1.3 KiB
Go

package config
import (
"io/ioutil"
yaml "gopkg.in/yaml.v1"
)
// Homebrew contains the brew section
type Homebrew struct {
Repo string
Folder string
Caveats string
Plist string
Dependencies []string
Conflicts []string
}
// Hooks define actions to run before and/or after something
type Hooks struct {
Pre string
Post string
}
// Build contains the build configuration section
type Build struct {
Goos []string
Goarch []string
Main string
Ldflags string
Flags string
BinaryName string `yaml:"binary_name"`
Hooks Hooks
}
// Archive config used for the archive
type Archive struct {
Format string
NameTemplate string `yaml:"name_template"`
Replacements map[string]string
Files []string
}
// Release config used for the GitHub release
type Release struct {
Repo string
}
// FPM config
type FPM struct {
Formats []string
Dependencies []string
Conflicts []string
}
// Project includes all project configuration
type Project struct {
Release Release
Brew Homebrew
Build Build
Archive Archive
FPM FPM `yaml:"fpm"`
}
// Load config file
func Load(file string) (config Project, err error) {
data, err := ioutil.ReadFile(file)
if err != nil {
return config, err
}
err = yaml.Unmarshal(data, &config)
return
}