-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
102 lines (93 loc) · 2.2 KB
/
.goreleaser.yaml
File metadata and controls
102 lines (93 loc) · 2.2 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
# GoReleaser configuration for mms (Memory MCP Server)
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
version: 2
project_name: mms
before:
hooks:
- go mod tidy
- go test ./...
builds:
- id: mms
binary: mms
main: .
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
ldflags:
- -s -w -X main.version={{ .Version }}
archives:
- id: mms
ids:
- mms
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
formats:
- tar.gz
format_overrides:
- goos: windows
formats:
- zip
checksum:
name_template: "checksums.txt"
changelog:
sort: asc
filters:
exclude:
- "^Merge"
groups:
- title: "✨ Features"
regexp: '^feat(\(.+\))?:'
order: 0
- title: "🐛 Bug Fixes"
regexp: '^fix(\(.+\))?:'
order: 1
- title: "⚡ Performance"
regexp: '^perf(\(.+\))?:'
order: 2
- title: "♻️ Refactor"
regexp: '^refactor(\(.+\))?:'
order: 3
- title: "📝 Documentation"
regexp: '^docs?(\(.+\))?:'
order: 4
- title: "🧪 Tests"
regexp: '^tests?(\(.+\))?:'
order: 5
- title: "🛠 Build/CI"
regexp: '^(build|ci)(\(.+\))?:'
order: 6
- title: "🔧 Chore"
regexp: '^chore(\(.+\))?:'
order: 7
- title: "Others"
order: 999
brews:
- name: mms
repository:
owner: okooo5km
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
commit_author:
name: okooo5km
email: okooo5km@gmail.com
directory: Formula
homepage: "https://github.com/okooo5km/memory-mcp-server-go"
description: "A high-performance Go implementation of a knowledge graph memory server for MCP"
license: MIT
test: |
system "#{bin}/mms", "--version"
install: |
bin.install "mms"
release:
name_template: "v{{ .Version }}"
header: |
## Memory MCP Server (mms) v{{ .Version }}
footer: |
**Full Changelog**: https://github.com/okooo5km/memory-mcp-server-go/compare/{{ .PreviousTag }}...{{ .Tag }}
---
Install via Homebrew: `brew install okooo5km/tap/mms`