traefik/.goreleaser.yml.tmpl

67 lines
1.3 KiB
Cheetah
Raw Permalink Normal View History

2019-03-14 15:22:04 +00:00
project_name: traefik
dist: "./dist/[[ .GOOS ]]"
[[ if eq .GOOS "linux" ]]
2019-03-14 15:22:04 +00:00
before:
hooks:
- go generate
[[ end ]]
2019-03-14 15:22:04 +00:00
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:
2023-02-03 14:24:05 +00:00
- -s -w -X github.com/traefik/traefik/v3/pkg/version.Version={{.Version}} -X github.com/traefik/traefik/v3/pkg/version.Codename={{.Env.CODENAME}} -X github.com/traefik/traefik/v3/pkg/version.BuildDate={{.Date}}
2022-03-28 15:36:07 +00:00
flags:
- -trimpath
2019-03-14 15:22:04 +00:00
goos:
- "[[ .GOOS ]]"
2019-03-14 15:22:04 +00:00
goarch:
- amd64
2022-10-27 15:50:48 +00:00
- '386'
2019-03-14 15:22:04 +00:00
- arm
- arm64
- ppc64le
2022-02-15 09:08:08 +00:00
- s390x
2023-07-19 10:34:05 +00:00
- riscv64
2019-03-14 15:22:04 +00:00
goarm:
2022-10-27 15:50:48 +00:00
- '7'
- '6'
2019-03-14 15:22:04 +00:00
ignore:
- goos: darwin
2022-10-27 15:50:48 +00:00
goarch: '386'
2019-03-14 15:22:04 +00:00
- goos: openbsd
goarch: arm
2020-03-18 16:21:20 +00:00
- goos: openbsd
goarch: arm64
2022-10-27 15:50:48 +00:00
- goos: freebsd
goarch: arm
2019-03-14 15:22:04 +00:00
- goos: freebsd
2020-03-18 16:21:20 +00:00
goarch: arm64
2022-09-14 15:29:26 +00:00
- goos: windows
goarch: arm
2019-03-14 15:22:04 +00:00
changelog:
2024-02-16 09:08:04 +00:00
disable: true
2019-03-14 15:22:04 +00:00
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