This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.goreleaser.yml
123 lines (118 loc) · 3.58 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
env:
- CGO_ENABLED=0
- GO111MODULE=on
builds:
- binary: bin/check-cloudwatch-alarm
main: ./plugins/cloudwatch/check-cloudwatch-alarm/main.go
id: check-cloudwatch-alarm
- binary: bin/check-s3-bucket
main: ./plugins/s3/check-s3-bucket/main.go
id: check-s3-bucket
- binary: bin/check-s3-bucket-visibility
main: ./plugins/s3/check-s3-bucket-visibility/main.go
id: check-s3-bucket-visibility
- binary: bin/check-s3-object
main: ./plugins/s3/check-s3-object/main.go
id: check-s3-object
- binary: bin/check-s3-tag
main: ./plugins/s3/check-s3-tag/main.go
id: check-s3-tag
- binary: bin/metrics-s3
main: ./plugins/s3/metrics-s3/main.go
id: metrics-s3
- binary: bin/check-rds
main: ./plugins/rds/check-rds/main.go
id: check-rds
- binary: bin/check-rds-events
main: ./plugins/rds/check-rds-events/main.go
id: check-rds-events
- binary: bin/check-rds-pending
main: ./plugins/rds/check-rds-pending/main.go
id: check-rds-pending
- binary: bin/metrics-rds
main: ./plugins/rds/metrics-rds/main.go
id: metrics-rds
- binary: bin/check-elb-certs
main: ./plugins/elb/check-elb-certs/main.go
id: check-elb-certs
- binary: bin/check-elb-health-fog
main: ./plugins/elb/check-elb-health-fog/main.go
id: check-elb-health-fog
- binary: bin/check-elb-health-sdk
main: ./plugins/elb/check-elb-health-sdk/main.go
id: check-elb-health-sdk
- binary: bin/check-elb-instances-inservice
main: ./plugins/elb/check-elb-instances-inservice/main.go
id: check-elb-instances-inservice
- binary: bin/check-elb-latency
main: ./plugins/elb/check-elb-latency/main.go
id: check-elb-latency
- binary: bin/check-elb-nodes
main: ./plugins/elb/check-elb-nodes/main.go
id: check-elb-nodes
- binary: bin/check-elb-sum-requests
main: ./plugins/elb/check-elb-sum-requests/main.go
id: check-elb-sum-requests
- binary: bin/metrics-elb
main: ./plugins/elb/metrics-elb/main.go
id: metrics-elb
- binary: bin/check-ec2-cpu_balance
main: ./plugins/ec2/check-ec2-cpu_balance/main.go
id: check-ec2-cpu_balance
- binary: bin/check-ec2-filter
main: ./plugins/ec2/check-ec2-filter/main.go
id: check-ec2-filter
- binary: bin/check-ec2-network
main: ./plugins/ec2/check-ec2-network/main.go
id: check-ec2-network
- binary: bin/metrics-ec2-count
main: ./plugins/ec2/metrics-ec2-count/main.go
id: metrics-ec2-count
- binary: bin/metrics-ec2-filter
main: ./plugins/ec2/metrics-ec2-filter/main.go
id: metrics-ec2-filter
- binary: bin/check-ebs-burst-limit
main: ./plugins/ebs/check-ebs-burst-limit/main.go
id: check-ebs-burst-limit
- binary: bin/check-ebs-snapshots
main: ./plugins/ebs/check-ebs-snapshots/main.go
id: check-ebs-snapshots
- binary: bin/check-cloudwatch-alarms
main: ./plugins/cloudwatch/check-cloudwatch-alarms/main.go
id: check-cloudwatch-alarms
- binary: bin/check-cloudwatch-composite-metric
main: ./plugins/cloudwatch/check-cloudwatch-composite-metric/main.go
id: check-cloudwatch-composite-metric
- binary: bin/check-alb-target-group-health
main: ./plugins/alb/check-alb-target-group-health/main.go
id: check-alb-target-group-health
goos:
- darwin
- linux
- windows
goarch:
- amd64
- 386
- arm
- arm64
goarm:
- 7
targets:
- darwin_amd64
- linux_386
- linux_amd64
- linux_arm_7
- linux_arm64
- windows_amd64
checksum:
# You can change the name of the checksums file.
# Default is `{{ .ProjectName }}_{{ .Version }}_checksums.txt`.
name_template: "{{ .ProjectName }}_{{ .Version }}_sha512-checksums.txt"
algorithm: sha512
archives:
- id: tar
format: tar.gz
files:
- LICENSE
- README.md
- CHANGELOG.md