forked from daltoniam/switchboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
114 lines (101 loc) · 2.83 KB
/
Copy path.goreleaser.yml
File metadata and controls
114 lines (101 loc) · 2.83 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
version: 2
project_name: switchboard
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/server
binary: switchboard
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
archives:
- formats:
- tar.gz
format_overrides:
- goos: windows
formats:
- zip
name_template: >-
{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}
checksum:
name_template: "checksums.txt"
snapshot:
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^ci:"
- "^chore:"
brews:
- repository:
owner: daltoniam
name: homebrew-tap
directory: Formula
homepage: "https://github.com/daltoniam/switchboard"
description: "Unified MCP server aggregating 17+ integrations (GitHub, Datadog, Linear, Slack, AWS, GCP, and more) behind a single endpoint"
license: "MIT"
test: |
system "#{bin}/switchboard", "--help"
homebrew_casks:
- repository:
owner: daltoniam
name: homebrew-tap
directory: Casks
homepage: "https://github.com/daltoniam/switchboard"
description: "Unified MCP server aggregating 17+ integrations (GitHub, Datadog, Linear, Slack, AWS, GCP, and more) behind a single endpoint"
hooks:
post:
install: |
if OS.mac?
system_command "/usr/bin/xattr", args: ["-dr", "com.apple.quarantine", "#{staged_path}/switchboard"]
end
caveats: |
To start the background daemon, run:
switchboard daemon install
To uninstall the daemon before removing the cask, run:
switchboard daemon uninstall
scoops:
- repository:
owner: daltoniam
name: scoop-bucket
homepage: "https://github.com/daltoniam/switchboard"
description: "Unified MCP server aggregating 17+ integrations (GitHub, Datadog, Linear, Slack, AWS, GCP, and more) behind a single endpoint"
license: "MIT"
nfpms:
- package_name: switchboard
homepage: "https://github.com/daltoniam/switchboard"
description: "Unified MCP server aggregating 17+ integrations (GitHub, Datadog, Linear, Slack, AWS, GCP, and more) behind a single endpoint"
maintainer: "Austin Cherry <austin@daltoniam.com>"
license: "MIT"
formats:
- deb
- rpm
- apk
- archlinux
bindir: /usr/bin
contents:
- src: packaging/switchboard.service
dst: /usr/share/switchboard/switchboard.service
type: config
scripts:
postinstall: scripts/postinstall.sh
preremove: scripts/preremove.sh
release:
github:
owner: daltoniam
name: switchboard
draft: false
prerelease: auto
name_template: "v{{.Version}}"