-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
61 lines (55 loc) · 1.05 KB
/
.goreleaser.yml
File metadata and controls
61 lines (55 loc) · 1.05 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
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- id: mcp-hub
main: ./main.go
binary: mcp-hub
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X main.version={{.Version}}
archives:
- id: binaries
builds:
- mcp-hub
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
nfpms:
- id: packages
package_name: mcp-hub
vendor: MCP Hub
homepage: https://github.com/gabadi/mcp-hub
maintainer: Gabriel Adomnicai <gabadi@users.noreply.github.com>
description: TUI for managing Claude MCP configurations
license: MIT
formats:
- deb
- rpm
release:
github:
owner: gabadi
name: mcp-hub
draft: false
prerelease: auto
name_template: "{{.ProjectName}}-v{{.Version}}"
# NPM package will be created manually using GitHub Actions script
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'