-
Notifications
You must be signed in to change notification settings - Fork 17
/
.goreleaser.yml
79 lines (71 loc) · 2.02 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
version: 2
project_name: orchard
before:
hooks:
- go mod download
builds:
- main: cmd/orchard/main.go
ldflags: >
-X github.com/cirruslabs/orchard/internal/version.Version={{.Version}}
-X github.com/cirruslabs/orchard/internal/version.Commit={{.ShortCommit}}
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
archives:
- id: binary
format: binary
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
- id: regular
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
release:
prerelease: auto
nfpms:
- package_name: orchard-controller
vendor: Cirrus Labs, Inc.
homepage: https://github.com/cirruslabs/orchard
maintainer: support@cirruslabs.org
description: Orchestrator for running Tart Virtual Machines on a cluster of Apple Silicon devices
section: misc
formats:
- deb
- rpm
contents:
- src: packaging/orchard-controller.service
dst: /lib/systemd/system/orchard-controller.service
type: config
scripts:
postinstall: packaging/postinstall.sh
preremove: packaging/preremove.sh
postremove: packaging/postremove.sh
furies:
- account: cirruslabs
notarize:
macos:
- enabled: '{{ isEnvSet "MACOS_SIGN_P12" }}'
sign:
certificate: "{{.Env.MACOS_SIGN_P12}}"
password: "{{.Env.MACOS_SIGN_PASSWORD}}"
notarize:
issuer_id: "{{.Env.MACOS_NOTARY_ISSUER_ID}}"
key_id: "{{.Env.MACOS_NOTARY_KEY_ID}}"
key: "{{.Env.MACOS_NOTARY_KEY}}"
brews:
- name: orchard
ids:
- regular
repository:
owner: cirruslabs
name: homebrew-cli
install: |
bin.install "orchard"
generate_completions_from_executable(bin/"orchard", "completion")
caveats: See the Github repository for more information
homepage: https://github.com/cirruslabs/orchard
description: Orchestrator for running Tart Virtual Machines on a cluster of Apple Silicon devices
skip_upload: auto