-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.goreleaser.yml
More file actions
79 lines (74 loc) · 1.85 KB
/
.goreleaser.yml
File metadata and controls
79 lines (74 loc) · 1.85 KB
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
project_name: http-ping
gomod:
proxy: true
before:
hooks:
- go mod tidy
- go generate ./...
source:
enabled: true
builds:
- env:
- CGO_ENABLED=0
ldflags:
- -s -w
goos:
- linux
- windows
- freebsd
- darwin
goarch:
- 386
- amd64
- arm64
archives:
-
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^README:'
- '^gitignore:'
- '^goreleaser:'
- '^workflows:'
dockers:
- image_templates:
- "docker.io/feverch/http-ping:{{ .Tag }}"
- "docker.io/feverch/http-ping:v{{ .Major }}"
- "docker.io/feverch/http-ping:v{{ .Major }}.{{ .Minor }}"
- "docker.io/feverch/http-ping:latest"
- "ghcr.io/fever-ch/http-ping:{{ .Tag }}"
- "ghcr.io/fever-ch/http-ping:v{{ .Major }}"
- "ghcr.io/fever-ch/http-ping:v{{ .Major }}.{{ .Minor }}"
- "ghcr.io/fever-ch/http-ping:latest"
dockerfile: Dockerfile.goreleaser
nfpms:
-
homepage: https://github.com/fever-ch/http-ping
description: Http-Ping is similar to the usual ping networking utility but instead of working on top of ICMP, it works on top of HTTP/S.
maintainer: Raphaël P. Barazzutti
license: Apache 2.0
vendor: fever.ch
bindir: /usr/bin
suggests:
- ca-certificates
formats:
- apk
- deb
- rpm
brews:
-
repository:
owner: fever-ch
name: homebrew-tap
homepage: 'Http-Ping is similar to the usual ping networking utility but instead of working on top of ICMP, it works on top of HTTP/S.'
description: 'Http-Ping is similar to the usual ping networking utility but instead of working on top of ICMP, it works on top of HTTP/S.'