forked from frain-dev/convoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.publisher.yml
130 lines (117 loc) · 3.86 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
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]
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"
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:{{ .Tag }}"
goos: linux
goarch: amd64
dockerfile: release.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
- image_templates:
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:latest-slim"
- "docker.cloudsmith.io/convoy/convoy/{{ .Env.REPO_NAME }}:{{ .Tag }}-slim"
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
checksum:
name_template: "{{ .ProjectName}}_checksums.txt"
release:
ids:
- lib