2019-03-03 14:12:22 -03:00
|
|
|
env:
|
|
|
|
- GO111MODULE=on
|
2019-08-05 14:58:18 -03:00
|
|
|
- GOPROXY=https://gocenter.io
|
2018-10-28 21:54:15 -03:00
|
|
|
before:
|
|
|
|
hooks:
|
2020-02-17 13:13:28 +01:00
|
|
|
- go mod download
|
2020-11-04 23:12:49 -03:00
|
|
|
- ./scripts/completions.sh
|
2017-06-27 19:20:08 -03:00
|
|
|
builds:
|
2018-04-03 21:36:11 -03:00
|
|
|
- env:
|
|
|
|
- CGO_ENABLED=0
|
|
|
|
goos:
|
|
|
|
- linux
|
|
|
|
- darwin
|
|
|
|
- windows
|
|
|
|
goarch:
|
|
|
|
- 386
|
|
|
|
- amd64
|
|
|
|
- arm
|
|
|
|
- arm64
|
2020-07-06 16:09:22 -04:00
|
|
|
mod_timestamp: '{{ .CommitTimestamp }}'
|
|
|
|
flags:
|
|
|
|
- -trimpath
|
|
|
|
ldflags:
|
|
|
|
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} -X main.builtBy=goreleaser
|
2017-08-27 20:45:33 -03:00
|
|
|
checksum:
|
|
|
|
name_template: '{{ .ProjectName }}_checksums.txt'
|
2020-12-30 17:37:12 -03:00
|
|
|
changelog:
|
2017-10-20 15:54:43 -02:00
|
|
|
sort: asc
|
2017-10-18 09:43:18 -02:00
|
|
|
filters:
|
|
|
|
exclude:
|
2018-04-03 21:36:11 -03:00
|
|
|
- '^docs:'
|
|
|
|
- '^test:'
|
|
|
|
- Merge pull request
|
|
|
|
- Merge branch
|
2020-07-13 10:00:16 -03:00
|
|
|
- go mod tidy
|
2018-05-13 16:13:48 -03:00
|
|
|
dockers:
|
2020-11-28 16:26:37 -03:00
|
|
|
- image_templates:
|
|
|
|
- 'goreleaser/goreleaser:{{ .Tag }}-amd64'
|
|
|
|
- 'ghcr.io/goreleaser/goreleaser:{{ .Tag }}-amd64'
|
|
|
|
dockerfile: Dockerfile
|
2021-01-04 11:27:27 -03:00
|
|
|
use_buildx: true
|
2020-11-28 16:26:37 -03:00
|
|
|
build_flag_templates:
|
2021-01-04 14:29:31 -03:00
|
|
|
- "--pull"
|
2020-11-28 16:26:37 -03:00
|
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
|
|
- "--label=org.opencontainers.image.name={{.ProjectName}}"
|
|
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
|
|
- "--label=org.opencontainers.image.source={{.GitURL}}"
|
2021-01-04 14:29:31 -03:00
|
|
|
- "--platform=linux/amd64"
|
2018-11-27 13:39:50 -02:00
|
|
|
extra_files:
|
|
|
|
- scripts/entrypoint.sh
|
2018-10-31 00:23:29 -03:00
|
|
|
- image_templates:
|
2021-01-04 10:37:04 -03:00
|
|
|
- 'goreleaser/goreleaser:{{ .Tag }}-arm64'
|
|
|
|
- 'ghcr.io/goreleaser/goreleaser:{{ .Tag }}-arm64'
|
2018-11-27 13:39:50 -02:00
|
|
|
dockerfile: Dockerfile
|
2021-01-04 11:27:27 -03:00
|
|
|
use_buildx: true
|
2018-11-27 14:05:54 -02:00
|
|
|
build_flag_templates:
|
2021-01-04 14:29:31 -03:00
|
|
|
- "--pull"
|
2020-01-26 16:06:21 +01:00
|
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
|
|
- "--label=org.opencontainers.image.name={{.ProjectName}}"
|
|
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
|
|
- "--label=org.opencontainers.image.source={{.GitURL}}"
|
2021-01-04 14:29:31 -03:00
|
|
|
- "--platform=linux/arm64"
|
2020-11-28 16:26:37 -03:00
|
|
|
goarch: arm64
|
2018-09-04 09:26:26 -03:00
|
|
|
extra_files:
|
|
|
|
- scripts/entrypoint.sh
|
2020-11-28 16:26:37 -03:00
|
|
|
docker_manifests:
|
|
|
|
- name_template: 'goreleaser/goreleaser:{{ .Tag }}'
|
|
|
|
image_templates:
|
|
|
|
- 'goreleaser/goreleaser:{{ .Tag }}-amd64'
|
2021-01-04 10:37:04 -03:00
|
|
|
- 'goreleaser/goreleaser:{{ .Tag }}-arm64'
|
2020-11-28 16:26:37 -03:00
|
|
|
- name_template: 'ghcr.io/goreleaser/goreleaser:{{ .Tag }}'
|
|
|
|
image_templates:
|
|
|
|
- 'ghcr.io/goreleaser/goreleaser:{{ .Tag }}-amd64'
|
2021-01-04 10:37:04 -03:00
|
|
|
- 'ghcr.io/goreleaser/goreleaser:{{ .Tag }}-arm64'
|
2020-11-28 16:26:37 -03:00
|
|
|
- name_template: 'goreleaser/goreleaser:latest'
|
|
|
|
image_templates:
|
2020-12-31 10:53:45 -03:00
|
|
|
- 'goreleaser/goreleaser:{{ .Tag }}-amd64'
|
2021-01-04 10:37:04 -03:00
|
|
|
- 'goreleaser/goreleaser:{{ .Tag }}-arm64'
|
2020-11-28 16:26:37 -03:00
|
|
|
- name_template: 'ghcr.io/goreleaser/goreleaser:latest'
|
|
|
|
image_templates:
|
2020-12-31 10:53:45 -03:00
|
|
|
- 'ghcr.io/goreleaser/goreleaser:{{ .Tag }}-amd64'
|
2021-01-04 10:37:04 -03:00
|
|
|
- 'ghcr.io/goreleaser/goreleaser:{{ .Tag }}-arm64'
|
2019-04-16 10:19:15 -03:00
|
|
|
archives:
|
2019-08-13 13:48:53 -03:00
|
|
|
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
2019-04-16 10:19:15 -03:00
|
|
|
replacements:
|
|
|
|
darwin: Darwin
|
|
|
|
linux: Linux
|
|
|
|
windows: Windows
|
|
|
|
386: i386
|
|
|
|
amd64: x86_64
|
|
|
|
format_overrides:
|
|
|
|
- goos: windows
|
|
|
|
format: zip
|
2020-11-04 23:12:49 -03:00
|
|
|
files:
|
|
|
|
- README.md
|
|
|
|
- LICENSE.md
|
|
|
|
- completions/*
|
2019-08-13 13:48:53 -03:00
|
|
|
brews:
|
2020-07-06 14:48:17 +01:00
|
|
|
- tap:
|
2019-08-13 13:48:53 -03:00
|
|
|
owner: goreleaser
|
|
|
|
name: homebrew-tap
|
|
|
|
folder: Formula
|
|
|
|
homepage: https://goreleaser.com
|
|
|
|
description: Deliver Go binaries as fast and easily as possible
|
2020-11-26 14:06:47 +01:00
|
|
|
license: MIT
|
2019-08-13 13:48:53 -03:00
|
|
|
test: |
|
|
|
|
system "#{bin}/goreleaser -v"
|
2020-05-22 09:50:34 -03:00
|
|
|
dependencies:
|
2020-05-24 18:10:25 +03:00
|
|
|
- name: go
|
2020-11-04 23:12:49 -03:00
|
|
|
install: |-
|
|
|
|
bin.install "goreleaser"
|
|
|
|
bash_completion.install "completions/goreleaser.bash" => "goreleaser"
|
|
|
|
zsh_completion.install "completions/goreleaser.zsh" => "_goreleaser"
|
|
|
|
fish_completion.install "completions/goreleaser.fish"
|
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
|
2019-05-07 06:59:53 -03:00
|
|
|
nfpms:
|
2020-04-12 14:31:35 -03:00
|
|
|
- file_name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
2019-05-07 06:59:53 -03:00
|
|
|
homepage: https://goreleaser.com
|
|
|
|
description: Deliver Go binaries as fast and easily as possible
|
|
|
|
maintainer: Carlos Alexandro Becker <root@carlosbecker.com>
|
|
|
|
license: MIT
|
|
|
|
vendor: GoReleaser
|
2021-01-08 18:01:47 -03:00
|
|
|
contents:
|
|
|
|
- src: ./completions/goreleaser.bash
|
|
|
|
dst: /etc/bash_completion.d/goreleaser
|
|
|
|
- src: ./completions/goreleaser.fish
|
|
|
|
dst: /usr/share/fish/completions/goreleaser.fish
|
|
|
|
- src: ./completions/goreleaser.zsh
|
|
|
|
dst: /usr/local/share/zsh/site-functions/_goreleaser
|
2019-05-07 06:59:53 -03:00
|
|
|
formats:
|
2020-08-22 19:00:14 -03:00
|
|
|
- apk
|
2019-05-07 06:59:53 -03:00
|
|
|
- deb
|
|
|
|
- rpm
|
|
|
|
dependencies:
|
|
|
|
- git
|
2020-05-23 14:28:55 -03:00
|
|
|
recommends:
|
|
|
|
- golang
|
2019-08-13 13:48:53 -03:00
|
|
|
snapcrafts:
|
|
|
|
- name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
|
|
|
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
|
|
|
|
publish: true
|