ergo/.goreleaser.yml

58 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2018-01-07 03:21:44 +01:00
# .goreleaser.yml
# Build customization
2021-05-25 06:34:38 +02:00
project_name: ergo
2018-01-07 03:21:44 +01:00
builds:
2021-05-25 06:34:38 +02:00
- main: ergo.go
binary: ergo
2018-01-07 03:21:44 +01:00
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
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
2021-05-25 06:34:38 +02:00
- ergo.motd
- default.yaml
2020-10-23 06:27:55 +02:00
- traditional.yaml
2021-01-22 14:50:12 +01:00
- docs/MANUAL.md
2021-01-31 04:07:51 +01:00
- docs/USERGUIDE.md
2020-05-20 16:31:05 +02:00
- 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"