-
Notifications
You must be signed in to change notification settings - Fork 3
/
.goreleaser.yml
90 lines (78 loc) · 1.83 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
# you may remove this if you don't use vgo
- go mod download
builds:
- env:
- CGO_ENABLED=0
binary: 'bin/{{ .ProjectName }}'
goos:
- linux
- darwin
- windows
- freebsd
goarch:
- amd64
- '386'
- arm64
- arm
goarm:
- 6
- 7
ignore:
- goos: darwin
goarch: '386'
- goos: darwin
goarch: arm
- goos: darwin
goarch: arm64
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
- goos: freebsd
goarch: arm64
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_sha512-checksums.txt'
algorithm: sha512
archives:
- format: tar.gz
id: release-archive
files:
- LICENSE
- README.md
- CHANGELOG.md
nfpms:
-
vendor: Sensu, Inc.
# Your app's homepage.
# Default is empty.
homepage: https://sensu.io
# Your app's maintainer (probably you).
# Default is empty.
maintainer: Eric Chlebek <[email protected]>
# Your app's description.
# Default is empty.
description: High performance log file analyzer.
# Your app's license.
# Default is empty.
license: MIT
# Packages your package depends on.
dependencies: []
# Packages your package recommends installing.
# For RPM packages rpmbuild >= 4.13 is required
recommends: []
# Packages your package suggests installing.
# For RPM packages rpmbuild >= 4.13 is required
suggests: []
# Packages that conflict with your package.
conflicts: []
# Override default /usr/local/bin destination for binaries
# bindir: /usr/bin
# folders that should be created and managed by the packager
# implementation.
# Default is empty.
contents:
- dst: /etc/sensu-check-log
type: dir