-
Notifications
You must be signed in to change notification settings - Fork 2
/
.goreleaser.yml
70 lines (62 loc) · 1.85 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
---
builds:
- env: ["CGO_ENABLED=0"]
main: ./cmd/vest
binary: vest
asmflags: ["all=-trimpath={{.Env.PWD}}"]
gcflags: ["all=-trimpath={{.Env.PWD}}"]
id: vestibule-vest
- env: ["CGO_ENABLED=0"]
main: ./cmd/bule
binary: bule
asmflags: ["all=-trimpath={{.Env.PWD}}"]
gcflags: ["all=-trimpath={{.Env.PWD}}"]
id: vestibule-bule
archives:
- files: ["none*"]
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
snapshot:
name_template: "{{ .Tag }}-snapshot"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
release:
prerelease: auto
brews:
- skip_upload: auto
github:
owner: lumoslabs
name: homebrew-vestibule
folder: Formula
description: "Gather secrets from various backends and inject them into the process environment"
homepage: "https://github.com/lumoslabs/vestibule"
test: |
system "#{bin}/vest --version"
system "#{bin}/bule --version"
dockers:
- dockerfile: docker/alpine/Dockerfile
binaries: [bule, vest]
image_templates:
- "quay.io/lumoslabs/vestibule:{{ .Tag }}-alpine"
- "registry.gitlab.com/lumoslabs/vestibule:{{ .Tag }}-alpine"
- dockerfile: docker/ubuntu/bionic/Dockerfile
binaries: [bule, vest]
image_templates:
- "quay.io/lumoslabs/vestibule:{{ .Tag }}-bionic"
- "quay.io/lumoslabs/vestibule:{{ .Tag }}"
- "quay.io/lumoslabs/vestibule:v{{ .Major }}.{{ .Minor }}"
- "quay.io/lumoslabs/vestibule:latest"
- "registry.gitlab.com/lumoslabs/vestibule:{{ .Tag }}"
- "registry.gitlab.com/lumoslabs/vestibule:{{ .Tag }}-bionic"
- "registry.gitlab.com/lumoslabs/vestibule:v{{ .Major }}.{{ .Minor }}"
- "registry.gitlab.com/lumoslabs/vestibule:latest"