-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.goreleaser.yml
More file actions
112 lines (96 loc) · 2.69 KB
/
.goreleaser.yml
File metadata and controls
112 lines (96 loc) · 2.69 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
project_name: mcp-server-manager
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- main: ./cmd/server
binary: mcp-server-manager
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
archives:
- format_overrides:
- goos: windows
format: zip
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
files:
- README.md
- LICENSE*
- configs/config.yaml
- systemd/mcp-server-manager.service
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
github:
owner: vlazic
name: mcp-server-manager
name_template: "{{.ProjectName}} v{{.Version}}"
header: |
{{- if .TagSubject -}}
## 🎉 {{ .TagSubject }}
{{- if .TagBody }}
{{ .TagBody }}
{{- end }}
---
{{- end }}
## 📋 Changes
footer: |
## 📥 Installation
### Linux (Debian/Ubuntu)
```bash
wget https://github.com/vlazic/mcp-server-manager/releases/download/{{ .Tag }}/mcp-server-manager_{{ .Version }}_linux_amd64.deb
sudo dpkg -i mcp-server-manager_{{ .Version }}_linux_amd64.deb
```
### Other Platforms
Download the appropriate binary for your platform from the assets below.
## 📚 Resources
- [Documentation](https://github.com/vlazic/mcp-server-manager#readme)
- [Report Issues](https://github.com/vlazic/mcp-server-manager/issues)
**Full Changelog**: https://github.com/vlazic/mcp-server-manager/compare/{{.PreviousTag}}...{{.Tag}}
nfpms:
- id: packages
package_name: mcp-server-manager
vendor: MCP Server Manager
homepage: https://github.com/vlazic/mcp-server-manager
maintainer: Vladimir Lazic <contact@vlazic.com>
description: |-
Centralized management of Model Context Protocol (MCP) servers across multiple AI clients.
Provides a single YAML configuration file and web interface to manage MCP servers
for Claude Code, Gemini CLI, and other MCP-compatible clients.
license: MIT
formats:
- deb
dependencies:
- systemd
suggests:
- nodejs
- npm
contents:
- src: ./systemd/mcp-server-manager.service
dst: /usr/lib/systemd/user/mcp-server-manager.service
bindir: /usr/local/bin
scripts:
postinstall: "scripts/postinstall.sh"