ergo/.goreleaser.yml

60 lines
1.3 KiB
YAML
Raw Normal View History

2018-01-07 03:21:44 +01:00
# .goreleaser.yml
# Build customization
project_name: oragono
builds:
- main: oragono.go
binary: oragono
goos:
- freebsd
- windows
- darwin
- linux
goarch:
2018-04-12 05:13:52 +02:00
- "386"
2018-01-07 03:21:44 +01:00
- amd64
- arm
- arm64
goarm:
- 6
- 7
ignore:
- goos: windows
goarch: arm
- goos: darwin
goarch: arm
2018-04-12 05:13:52 +02:00
- goos: darwin
goarch: 386
2018-01-07 03:21:44 +01:00
- goos: freebsd
goarch: arm
- goos: freebsd
goarch: arm64
2020-03-30 03:02:52 +02:00
flags:
- -trimpath
2020-05-20 16:31:05 +02:00
# #1031: don't include the git hash in an official build
# default is: "-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.builtBy=goreleaser"
ldflags:
- "-s -w -X main.build={{.Version}}"
archives:
-
name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
format: tar.gz
replacements:
amd64: x86_64
darwin: macos
format_overrides:
- goos: windows
format: zip
files:
- README
- CHANGELOG.md
- oragono.motd
- oragono.yaml
- docs/*
- languages/*.yaml
- languages/*.json
- languages/*.md
wrap_in_directory: true
2018-01-07 03:21:44 +01:00
checksum:
name_template: "{{ .ProjectName }}-{{ .Version }}-checksums.txt"