2017-06-27 19:20:08 -03:00
|
|
|
builds:
|
2017-07-08 12:06:59 -03:00
|
|
|
-
|
2017-06-27 19:20:08 -03:00
|
|
|
env:
|
2017-06-27 22:45:59 -03:00
|
|
|
- CGO_ENABLED=0
|
2017-06-27 19:20:08 -03:00
|
|
|
goos:
|
|
|
|
- linux
|
2017-09-11 23:46:26 -03:00
|
|
|
- darwin
|
|
|
|
- windows
|
2017-06-27 19:20:08 -03:00
|
|
|
goarch:
|
2017-09-11 23:46:26 -03:00
|
|
|
- 386
|
2017-06-27 19:20:08 -03:00
|
|
|
- amd64
|
2017-09-11 23:46:26 -03:00
|
|
|
- arm
|
|
|
|
- arm64
|
2017-08-27 20:45:33 -03:00
|
|
|
checksum:
|
|
|
|
name_template: '{{ .ProjectName }}_checksums.txt'
|
2017-10-18 09:43:18 -02:00
|
|
|
changelog:
|
2017-10-20 15:54:43 -02:00
|
|
|
sort: asc
|
2017-10-18 09:43:18 -02:00
|
|
|
filters:
|
|
|
|
exclude:
|
2018-01-02 19:06:13 -02:00
|
|
|
- '^docs:'
|
|
|
|
- '^test:'
|
2017-10-18 09:43:18 -02:00
|
|
|
- Merge pull request
|
|
|
|
- Merge branch
|
2017-09-11 23:42:36 -03:00
|
|
|
dockers:
|
|
|
|
- image: goreleaser/goreleaser
|
2018-01-19 01:01:04 -02:00
|
|
|
tag_templates:
|
|
|
|
- '{{ .Tag }}'
|
2018-01-19 01:20:50 -02:00
|
|
|
- 'v{{ .Major }}.{{ .Minor }}'
|
2018-01-19 01:01:04 -02:00
|
|
|
- 'latest'
|
2017-04-21 16:23:43 -03:00
|
|
|
archive:
|
2017-08-27 20:45:33 -03:00
|
|
|
name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
2017-05-18 12:44:55 -03:00
|
|
|
replacements:
|
|
|
|
darwin: Darwin
|
|
|
|
linux: Linux
|
|
|
|
windows: Windows
|
|
|
|
386: i386
|
|
|
|
amd64: x86_64
|
2017-04-21 16:23:43 -03:00
|
|
|
format_overrides:
|
|
|
|
- goos: windows
|
|
|
|
format: zip
|
2016-12-21 10:35:34 -02:00
|
|
|
brew:
|
2017-03-22 21:23:52 -03:00
|
|
|
github:
|
|
|
|
owner: goreleaser
|
|
|
|
name: homebrew-tap
|
2017-01-14 18:44:51 -02:00
|
|
|
folder: Formula
|
2018-02-12 18:50:22 -02:00
|
|
|
homepage: https://goreleaser.com
|
2017-07-08 12:05:57 -03:00
|
|
|
description: Deliver Go binaries as fast and easily as possible
|
2017-07-16 12:33:41 -03:00
|
|
|
test: |
|
|
|
|
system "#{bin}/goreleaser -v"
|
2018-02-12 17:58:58 +00:00
|
|
|
scoop:
|
|
|
|
bucket:
|
|
|
|
owner: goreleaser
|
|
|
|
name: scoop-bucket
|
2018-02-12 18:50:22 -02:00
|
|
|
homepage: https://goreleaser.com
|
2018-02-12 17:58:58 +00:00
|
|
|
description: Deliver Go binaries as fast and easily as possible
|
|
|
|
license: MIT
|
2018-02-17 12:16:06 -02:00
|
|
|
nfpm:
|
2018-01-19 01:02:12 -02:00
|
|
|
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
2018-02-12 18:50:22 -02:00
|
|
|
homepage: https://goreleaser.com
|
2017-07-08 12:05:57 -03:00
|
|
|
description: Deliver Go binaries as fast and easily as possible
|
2017-04-21 17:13:25 -03:00
|
|
|
maintainer: Carlos Alexandro Becker <root@carlosbecker.com>
|
2017-04-21 17:02:28 -03:00
|
|
|
license: MIT
|
|
|
|
vendor: GoReleaser
|
2017-01-29 21:55:32 -02:00
|
|
|
formats:
|
2017-01-29 22:33:08 -02:00
|
|
|
- deb
|
2017-08-18 19:45:44 -03:00
|
|
|
- rpm
|
2017-01-29 22:33:08 -02:00
|
|
|
dependencies:
|
|
|
|
- git
|
2017-07-27 00:30:48 +00:00
|
|
|
snapcraft:
|
2018-01-19 01:02:12 -02:00
|
|
|
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
2017-07-27 00:30:48 +00:00
|
|
|
summary: Deliver Go binaries as fast and easily as possible
|
|
|
|
description: |
|
|
|
|
GoReleaser builds Go binaries for several platforms, creates a GitHub
|
|
|
|
release and then pushes a Homebrew formula to a repository. All that
|
|
|
|
wrapped in your favorite CI.
|
|
|
|
grade: stable
|
|
|
|
confinement: classic
|
2018-01-02 19:06:13 -02:00
|
|
|
|