traefik/.goreleaser.yml

61 lines
1.1 KiB
YAML
Raw Normal View History

2019-03-14 15:22:04 +00:00
project_name: traefik
before:
hooks:
- go generate
builds:
- binary: traefik
2020-07-15 19:58:16 +00:00
main: ./cmd/traefik/
2019-03-14 15:22:04 +00:00
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X github.com/containous/traefik/v2/pkg/version.Version={{.Version}} -X github.com/containous/traefik/v2/pkg/version.Codename={{.Env.CODENAME}} -X github.com/containous/traefik/v2/pkg/version.BuildDate={{.Date}}
2019-03-14 15:22:04 +00:00
goos:
- linux
- darwin
- windows
- freebsd
- openbsd
goarch:
- amd64
- 386
- arm
- arm64
- ppc64le
goarm:
- 7
- 6
- 5
ignore:
- goos: darwin
goarch: 386
- goos: openbsd
goarch: arm
2020-03-18 16:21:20 +00:00
- goos: openbsd
goarch: arm64
2019-03-14 15:22:04 +00:00
- goos: freebsd
2020-03-18 16:21:20 +00:00
goarch: arm64
2019-03-14 15:22:04 +00:00
changelog:
skip: true
archives:
- id: traefik
name_template: '{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE.md
- CHANGELOG.md
2019-03-14 15:22:04 +00:00
2019-04-16 12:50:05 +00:00
checksum:
name_template: "{{ .ProjectName }}_v{{ .Version }}_checksums.txt"
2019-03-14 15:22:04 +00:00
release:
disable: true