-
Notifications
You must be signed in to change notification settings - Fork 17
/
.goreleaser.yaml
43 lines (38 loc) · 987 Bytes
/
.goreleaser.yaml
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
# View goreleaser docs for configuration settings
# https://goreleaser.com
---
project_name: theatre
builds:
- &commonBuildConfig
id: theatre-consoles
binary: theatre-consoles
main: cmd/theatre-consoles/main.go
goos:
- darwin
- linux
goarch:
- amd64
- arm64
ignore:
- goos: linux
goarch: arm64
ldflags: >
-X github.com/gocardless/theatre/v3/cmd.Version={{.Version}}
-X github.com/gocardless/theatre/v3/cmd.Commit={{.Commit}}
-X github.com/gocardless/theatre/v3/cmd.Date={{.Date}}
-a
-installsuffix cgo
env:
- CGO_ENABLED=0
- <<: *commonBuildConfig
id: theatre-secrets
binary: theatre-secrets
main: cmd/theatre-secrets/main.go
- <<: *commonBuildConfig
id: vault-manager
binary: vault-manager
main: cmd/vault-manager/main.go
- <<: *commonBuildConfig
id: workloads-manager
binary: workloads-manager
main: cmd/workloads-manager/main.go