forked from bradleyjkemp/grpc-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
47 lines (43 loc) · 865 Bytes
/
.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
before:
hooks:
- go mod download
env:
- GO111MODULE=on
builds:
- &common
goos:
- darwin
- windows
- linux
goarch:
- amd64
ldflags:
- -s -w -X github.com/bradleyjkemp/grpc-tools/internal/versionflag.version={{.Version}}
id: grpc-dump
binary: grpc-dump
main: ./grpc-dump
- <<: *common
id: grpc-fixture
binary: grpc-fixture
main: ./grpc-fixture
- <<: *common
id: grpc-replay
binary: grpc-replay
main: ./grpc-replay
brews:
-
github:
owner: bradleyjkemp
name: homebrew-formulae
homepage: "https://github.com/bradleyjkemp/grpc-tools"
description: "A suite of gRPC debugging tools. Like Fiddler/Charles but for gRPC."
archives:
- replacements:
darwin: macOS
linux: Linux
windows: Windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"