-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
84 lines (76 loc) · 1.4 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
project_name: jira-flow
builds:
- id: "jiraflow"
main: ./cmd/app/main.go
binary: jiraflow
goos:
- darwin
- linux
- windows
- freebsd
goarch:
- amd64
- arm
- 386
- arm64
hooks:
pre: go mod tidy
- id: "commitmsg"
main: ./hooks/commitmsg/main.go
binary: commitmsg
goos:
- darwin
- linux
- windows
- freebsd
goarch:
- amd64
- arm
- 386
- arm64
- id: "postco"
main: ./hooks/post_checkout/main.go
binary: postco
goos:
- darwin
- linux
- windows
- freebsd
goarch:
- amd64
- arm
- 386
- arm64
archives:
- id: jiraflow
builds:
- jiraflow
format: tar.gz
name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
- id: commitmsg
builds:
- commitmsg
format: tar.gz
name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
- id: postco
builds:
- postco
format: tar.gz
name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
checksum:
name_template: "checksums.txt"
signs:
- artifacts: checksum
cmd: gpg2
args:
- "--batch"
- "-u"
- "{{ .Env.GPG_FINGERPRINT }}"
- "--output"
- "${signature}"
- "--detach-sign"
- "${artifact}"
release:
github:
owner: JaleelB
name: jira-flow