forked from frain-dev/convoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.publisher.yml
165 lines (149 loc) · 5.36 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
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: dev@frain.dev
tap:
owner: frain-dev
name: homebrew-tools
url_template: https://dl.cloudsmith.io/public/convoy/convoy/raw/versions/{{.Version}}/{{ .ArtifactName }}
dockers:
- image_templates:
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:latest-amd64"
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:{{ .Tag }}-amd64"
use: buildx
goos: linux
goarch: amd64
dockerfile: release.Dockerfile
extra_files:
- configs/local/start.sh
ids:
- cobin
build_flag_templates:
- --platform=linux/amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description=A fast & secure open source webhooks service
- --label=org.opencontainers.image.url=https://github.com/{{ .Env.REPO_NAME }}
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.REPO_NAME }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.licenses=MPL-2.0
- image_templates:
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:latest-arm64"
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:{{ .Tag }}-arm64"
use: buildx
goos: linux
goarch: arm64
dockerfile: release.Dockerfile
extra_files:
- configs/local/start.sh
ids:
- cobin
build_flag_templates:
- --platform=linux/arm64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description=A fast & secure open source webhooks service
- --label=org.opencontainers.image.url=https://github.com/{{ .Env.REPO_NAME }}
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.REPO_NAME }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.licenses=MPL-2.0
- image_templates:
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:latest-slim"
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:{{ .Tag }}-slim"
use: buildx
goos: linux
goarch: amd64
dockerfile: slim.Dockerfile
ids:
- cobin
build_flag_templates:
- --platform=linux/amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description=A fast & secure open source webhooks service
- --label=org.opencontainers.image.url=https://github.com/{{ .Env.REPO_NAME }}
- --label=org.opencontainers.image.source=https://github.com/{{ .Env.REPO_NAME }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.licenses=MPL-2.0
docker_manifests:
- name_template: "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:{{ .Tag }}"
image_templates:
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:{{ .Tag }}-amd64"
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:{{ .Tag }}-arm64"
- name_template: "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:latest"
image_templates:
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:latest-amd64"
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:latest-arm64"
checksum:
name_template: "{{ .ProjectName}}_checksums.txt"
release:
ids:
- lib