This repository has been archived by the owner on Dec 17, 2022. It is now read-only.
forked from inconshreveable/ngrok
-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
.goreleaser.yml
136 lines (136 loc) · 2.95 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
124
125
126
127
128
129
130
131
132
133
134
135
136
env:
- GOPROXY=https://proxy.golang.org,direct
before:
hooks:
- make deps
- make assets
builds:
- env:
- CGO_ENABLED=0
ldflags:
- -s -w
main: ./cmd/pgrok/main.go
id: pgrok
binary: pgrok
targets:
- darwin_amd64
- darwin_arm64
- windows_amd64
- windows_arm_6
- windows_386
- linux_amd64
- linux_arm_7
- linux_arm64
- linux_386
- android_arm64
- env:
- CGO_ENABLED=0
ldflags:
- -s -w
main: ./cmd/pgrokd/main.go
id: pgrokd
binary: pgrokd
targets:
- darwin_amd64
- darwin_arm64
- windows_amd64
- windows_arm_7
- windows_386
- linux_amd64
- linux_arm_7
- linux_arm64
- linux_386
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
archives:
- id: pgrokd
builds:
- pgrokd
name_template: "pgrokd_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
replacements:
darwin: MacOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
- id: pgrok
builds:
- pgrok
name_template: "pgrok_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
replacements:
darwin: MacOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
brews:
- name: pgrok
ids:
- pgrok
tap:
owner: jerson
name: homebrew-tap
commit_author:
name: Gerson Alexander Pardo Gamez
email: [email protected]
folder: Formula
homepage: "https://github.com/jerson/pgrok"
description: "Introspected tunnels to localhost a fork from pgrok."
install: |
bin.install "pgrok"
test: |
system "#{bin}/pgrok", "-v"
- name: pgrokd
ids:
- pgrokd
tap:
owner: jerson
name: homebrew-tap
commit_author:
name: Gerson Alexander Pardo Gamez
email: [email protected]
folder: Formula
homepage: "https://github.com/jerson/pgrok"
description: "Server introspected tunnels to localhost a fork from pgrok."
install: |
bin.install "pgrokd"
test: |
system "#{bin}/pgrokd", "-v"
scoop:
bucket:
owner: jerson
name: scoop-bucket
commit_author:
name: Gerson Alexander Pardo Gamez
email: [email protected]
homepage: "https://github.com/jerson/pgrok"
description: "Introspected tunnels to localhost a fork from pgrok."
license: MIT
nfpms:
- id: pgrok
homepage: "https://github.com/jerson/pgrok"
description: "Introspected tunnels to localhost a fork from pgrok."
maintainer: Gerson Alexander Pardo Gamez <[email protected]>
license: MIT
formats:
- deb
- rpm
recommends:
- rpm
builds:
- pgrok
- pgrokd