mc-router/.goreleaser.yml

46 lines
819 B
YAML
Raw Normal View History

2018-05-10 01:37:15 +02:00
project_name: mc-router
release:
github:
owner: itzg
name: mc-router
2019-04-16 04:16:26 +02:00
before:
hooks:
- go mod download
2018-05-10 01:37:15 +02:00
brew:
install: bin.install "mc-router"
builds:
- goos:
- linux
- darwin
- windows
goarch:
- amd64
goarm:
- "6"
main: cmd/mc-router/main.go
binary: mc-router
env:
- CGO_ENABLED=0
2019-04-20 03:45:12 +02:00
archives:
- id: tar_gz
format: tar.gz
2019-07-14 23:59:43 +02:00
format_overrides:
- goos: windows
format: zip
2019-04-20 03:45:12 +02:00
name_template: '{{ .Binary }}_{{.Version}}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
files:
- LICENSE*
- README*
2018-05-10 01:37:15 +02:00
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
dockers:
2019-04-20 03:45:12 +02:00
- image_templates:
- "itzg/mc-router:latest"
- "itzg/mc-router:{{.Tag}}"
goos: linux
2018-05-10 01:37:15 +02:00
goarch: amd64
2018-05-26 19:35:11 +02:00
changelog:
filters:
exclude:
- '^ci:'
- '^docs:'