-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
60 lines (60 loc) · 1.11 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
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
builds:
-
main: ./cmd/plutos/main.go
binary: plutos
goarch:
- amd64
env:
- CGO_ENABLED=0
-
main: ./cmd/plutoapi/main.go
binary: plutoapi
goarch:
- amd64
env:
- CGO_ENABLED=0
-
main: ./cmd/sqldb/main.go
binary: plutosqldb
goarch:
- amd64
env:
- CGO_ENABLED=0
-
main: ./cmd/plutoclient/main.go
binary: plutoclient
goarch:
- amd64
env:
- CGO_ENABLED=0
archive:
format: zip
replacements:
linux: Linux
amd64: x86_64
darwin: macOS
snapshot:
name_template: "{{ .Tag }}-next"
release:
draft: true
dockers:
-
binaries:
- plutos
- plutoapi
- plutosqldb
- plutoclient
image_templates:
- "qiwitech/qdp:{{ .Tag }}"
- "qiwitech/qdp:latest"
nfpm:
vendor: QIWI Blockchain Technologies
homepage: http://qiwi.tech/
maintainer: [email protected]
description: Plutos is an financial processing
license: GPL 3.0
formats:
- deb
- rpm