0b6a941b38
Update the goreleaser config to remove windows builds. It doesn't make sense to build binaries for windows because fail2ban does not provide any binary for windows. If windows support is required, docker can be used.
31 lines
479 B
YAML
31 lines
479 B
YAML
# This is an example goreleaser.yaml file with some sane defaults.
|
|
# Make sure to check the documentation at http://goreleaser.com
|
|
before:
|
|
hooks:
|
|
- make install-deps
|
|
builds:
|
|
-
|
|
dir: src
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- "386"
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- "6"
|
|
- "7"
|
|
|
|
archives:
|
|
-
|
|
files:
|
|
- LICENSE
|
|
- README.md
|
|
- CHANGELOG.md
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
changelog:
|
|
skip: true
|