-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.goreleaser.yml
56 lines (53 loc) · 1.29 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
builds:
- goos:
- linux
goarch:
- amd64
- arm64
nfpms:
- package_name: vxdb
vendor: The VitalVas
homepage: https://github.com/vitalvas/vxdb
maintainer: The VitalVas <source@vitalvas.com>
description: Simple schema-less Key-Value NoSQL database with simplest API interface
license: MIT
formats:
- deb
- rpm
contents:
- dst: /var/lib/vxdb
type: dir
- src: scripts/vxdb.service
dst: /lib/systemd/system/vxdb.service
file_info:
mode: 0644
dockers:
- image_templates:
- "vitalvas/vxdb:{{ .Tag }}-amd64"
use: buildx
goarch: amd64
dockerfile: Dockerfile
extra_files:
- LICENSE
build_flag_templates:
- "--pull"
- "--platform=linux/amd64"
- image_templates:
- "vitalvas/vxdb:{{ .Tag }}-arm64"
use: buildx
goarch: arm64
dockerfile: Dockerfile
extra_files:
- LICENSE
build_flag_templates:
- "--pull"
- "--platform=linux/arm64"
docker_manifests:
- name_template: vitalvas/vxdb:{{ .Tag }}
image_templates:
- vitalvas/vxdb:{{ .Tag }}-amd64
- vitalvas/vxdb:{{ .Tag }}-arm64
- name_template: vitalvas/vxdb:latest
image_templates:
- vitalvas/vxdb:{{ .Tag }}-amd64
- vitalvas/vxdb:{{ .Tag }}-arm64