1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-09 13:36:56 +02:00
goreleaser/config/config.go
Carlos Alexandro Becker 3f2eb7c56b
code improvements
2017-01-29 22:33:08 -02:00

70 lines
1.2 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
Dependencies []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
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
}
// 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
}