2021-02-07 10:46:25 +00:00
|
|
|
# This is an example goreleaser.yaml file with some sane defaults.
|
|
|
|
# Make sure to check the documentation at http://goreleaser.com
|
2022-02-20 08:46:40 +00:00
|
|
|
project_name: fail2ban_exporter
|
2021-02-07 10:46:25 +00:00
|
|
|
before:
|
|
|
|
hooks:
|
2021-10-17 17:39:02 +00:00
|
|
|
- make go/dependencies
|
2021-02-07 10:46:25 +00:00
|
|
|
builds:
|
2021-02-08 18:49:48 +00:00
|
|
|
-
|
2022-02-20 08:46:40 +00:00
|
|
|
binary: fail2ban_exporter
|
2021-02-08 18:49:48 +00:00
|
|
|
dir: src
|
|
|
|
goos:
|
2021-02-07 10:46:25 +00:00
|
|
|
- linux
|
|
|
|
- darwin
|
|
|
|
goarch:
|
|
|
|
- amd64
|
|
|
|
- "386"
|
|
|
|
- arm
|
|
|
|
- arm64
|
|
|
|
goarm:
|
|
|
|
- "6"
|
|
|
|
- "7"
|
|
|
|
|
|
|
|
archives:
|
|
|
|
-
|
2022-02-20 08:46:40 +00:00
|
|
|
wrap_in_directory: true
|
2021-02-07 10:46:25 +00:00
|
|
|
files:
|
|
|
|
- LICENSE
|
|
|
|
- README.md
|
|
|
|
- CHANGELOG.md
|
|
|
|
checksum:
|
|
|
|
name_template: 'checksums.txt'
|
|
|
|
changelog:
|
|
|
|
skip: true
|