-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path.goreleaser.yml
56 lines (52 loc) · 1.97 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
version: 2
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:
- amd64
- arm
- arm64
archives:
- format: tar.gz
wrap_in_directory: true
files:
- LICENSE
- README.md
brews:
- name: chrome-protocol-proxy
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."
directory: Formula
repository:
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
scoops:
- name: chrome-protocol-proxy
repository:
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