-
Notifications
You must be signed in to change notification settings - Fork 28
/
.goreleaser.yml
59 lines (55 loc) · 1.96 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
builds:
- binary: chrome-protocol-proxy
ldflags: -s -extldflags "-static" -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.builtBy=goreleaser
env:
- CGO_ENABLED=0
goos:
- windows
- darwin
- linux
goarch:
- 386
- amd64
- arm
- arm64
archives:
- format: tar.gz
wrap_in_directory: true
replacements:
amd64: x86_64
darwin: macos
files:
- LICENSE
- README.md
brews:
-
name: chrome-protocol-proxy
folder: Formula
caveats: "Usage: chrome-protocol-proxy -i -m -r localhost:9222"
homepage: "https://github.com/wendigo/chrome-protocol-proxy"
description: "chrome-protocol-proxy is small reverse websocket proxy designed for chrome debugging protocol. It's purpose is to capture messages written to and received from Chrome Debugging Protocol, coalesce requests with responses, unpack messages from Target domain and provide easy to read, colored output."
tap:
owner: wendigo
name: homebrew-tap
dockers:
- goos: linux
goarch: amd64
image_templates:
- "wendigo/chrome-protocol-proxy:latest"
- "wendigo/chrome-protocol-proxy:{{ .Tag }}"
- "wendigo/chrome-protocol-proxy:v{{ .Major }}"
skip_push: false
dockerfile: Dockerfile
build_flag_templates:
- "--label=org.label-schema.schema-version=1.0"
- "--label=org.label-schema.version={{.Version}}"
- "--label=org.label-schema.name={{.ProjectName}}"
extra_files:
- docker/run.sh
scoop:
bucket:
owner: wendigo
name: scoop-bucket
homepage: "https://github.com/wendigo/chrome-protocol-proxy"
description: "chrome-protocol-proxy is small reverse websocket proxy designed for chrome debugging protocol. It's purpose is to capture messages written to and received from Chrome Debugging Protocol, coalesce requests with responses, unpack messages from Target domain and provide easy to read, colored output."
license: MIT