-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.goreleaser.yml
94 lines (87 loc) · 2.21 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
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
build:
main: cli/cli.go
binary: meli
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
flags:
- -trimpath
- -v
asmflags:
- all=-trimpath={{.Env.GOPATH}}
gcflags:
- all=-trimpath={{.Env.GOPATH}}
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
archive:
name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
replacements:
darwin: macOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
sign:
artifacts: checksum
nfpm:
vendor: komuW.
homepage: https://github.com/komuw/meli
maintainer: komuW <[email protected]>
description: Meli is supposed to be a faster alternative to docker-compose.\n Faster in the sense that, Meli will try to pull as many services(docker containers) as it can in parallel.
license: MIT
name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
formats:
- deb
replacements:
darwin: macOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64
snapcraft:
name: meli
# 79 char long at most.
summary: Meli is supposed to be a faster alternative to docker-compose.
# Keep dscription under 100 words though
description: |
Meli is supposed to be a faster alternative to docker-compose.
Faster in the sense that, Meli will try to pull as many services(docker containers) as it can in parallel.
# https://snapcraft.io/docs/reference/channels
grade: stable
# https://snapcraft.io/docs/reference/confinement
confinement: strict
name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
replacements:
darwin: macOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64
# see issues/72
# dockers:
# -
# image: komuw/meli
# latest: true
# brew:
# github:
# owner: komuw
# name: meli
# commit_author:
# name: komuW
# email: [email protected]
# folder: HomebrewFormula
# homepage: "https://github.com/komuw/meli"
# description: "Faster alternative to docker-compose"
# test: |
# system "#{bin}/meli", "--version"
# install: |
# bin.install "meli"