-
Notifications
You must be signed in to change notification settings - Fork 8
/
.goreleaser.yml
59 lines (59 loc) · 1.38 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
version: 2
project_name: protoc-gen-go_temporal
builds:
- id: protoc-gen-go_temporal
binary: protoc-gen-go_temporal
main: ./cmd/protoc-gen-go_temporal
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64
ldflags:
- "-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}"
ignore:
- goos: windows
goarch: arm64
archives:
- files:
- LICENSE.md
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
release:
github:
owner: cludden
name: protoc-gen-go-temporal
signs:
- artifacts: checksum
args:
- "--batch"
- "--no-tty"
- "--pinentry-mode=loopback"
- "--local-user"
- "{{ .Env.GPG_FINGERPRINT }}" # set this environment variable for your signing key
- "--passphrase"
- "{{ .Env.GPG_PASSPHRASE }}"
- "--output"
- "${signature}"
- "--detach-sign"
- "${artifact}"
brews:
- repository:
owner: cludden
name: homebrew-formula
homepage: https://github.com/cludden/protoc-gen-go-temporal
description: protoc-gen-go_temporal - a protoc plugin for generating Temporal clients, workers, and clis in go from protobuf schemas
directory: Formula
license: MIT