-
Notifications
You must be signed in to change notification settings - Fork 140
/
.publisher.yml
95 lines (84 loc) · 2.29 KB
/
.publisher.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
85
86
87
88
89
90
91
92
93
94
95
project_name: convoy
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
main: ./cmd
id: cobin
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- id: lib
skip: true
# https://goreleaser.com/customization/archive/
archives:
- name_template: "{{ .ProjectName}}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
id: cobin-archive
builds:
- cobin
# https://goreleaser.com/customization/nfpm/
nfpms:
- id: deb
license: MPL-2.0
maintainer: frain-dev
homepage: https://getconvoy.io/
description: "A fast & secure open source webhooks service"
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
formats:
- deb
- id: rpm
license: MPL-2.0
maintainer: frain-dev
homepage: https://getconvoy.io/
description: "A fast & secure open source webhooks service"
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
formats:
- rpm
# https://goreleaser.com/customization/publishers/
publishers:
- name: cloudsmith-raw
ids:
- cobin-archive
dir: "{{ dir .ArtifactPath }}"
cmd: cloudsmith push raw --version={{ .Version }} convoy/convoy {{ .ArtifactName }}
env:
- CLOUDSMITH_API_KEY={{ .Env.CLOUDSMITH_API_KEY }}
- name: cloudsmith-deb
ids:
- deb
dir: "{{ dir .ArtifactPath }}"
cmd: cloudsmith push deb convoy/convoy/any-distro/any-version {{ .ArtifactName }}
env:
- CLOUDSMITH_API_KEY={{ .Env.CLOUDSMITH_API_KEY }}
- name: cloudsmith-rpm
ids:
- rpm
dir: "{{ dir .ArtifactPath }}"
cmd: cloudsmith push rpm convoy/convoy/any-distro/any-version {{ .ArtifactName }}
env:
- CLOUDSMITH_API_KEY={{ .Env.CLOUDSMITH_API_KEY }}
# https://goreleaser.com/customization/homebrew/
brews:
- name: convoy
homepage: https://getconvoy.io/
description: A fast & secure open source webhooks service
license: MPL-2.0
skip_upload: auto
commit_author:
name: frain-dev
email: [email protected]
repository:
owner: frain-dev
name: homebrew-tools
url_template: https://dl.cloudsmith.io/public/convoy/convoy/raw/versions/{{.Version}}/{{ .ArtifactName }}
checksum:
name_template: "{{ .ProjectName}}_checksums.txt"
release:
ids:
- lib