-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
165 lines (131 loc) · 3.34 KB
/
.goreleaser.yaml
File metadata and controls
165 lines (131 loc) · 3.34 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# GoReleaser configuration for RagCode MCP Server
# See https://goreleaser.com for documentation
version: 2
project_name: rag-code-mcp
before:
hooks:
# Ensure dependencies are up to date
- go mod tidy
- go mod download
builds:
- id: rag-code-mcp
main: ./cmd/rag-code-mcp
binary: rag-code-mcp
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
# Ignore certain combinations
ignore:
- goos: windows
goarch: arm64
ldflags:
- -s -w
- -X main.Version={{.Version}}
- -X main.Commit={{.Commit}}
- -X main.Date={{.Date}}
- -X main.BuiltBy=goreleaser
- id: ragcode-installer
main: ./cmd/install
binary: ragcode-installer
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: arm64
ldflags:
- -s -w
- -X main.Version={{.Version}}
- -X main.Commit={{.Commit}}
- -X main.Date={{.Date}}
- -X main.BuiltBy=goreleaser
archives:
- id: default
format: tar.gz
name_template: >-
{{ .ProjectName }}_
{{- .Os }}_
{{- .Arch }}
# Use zip for Windows
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
- config.yaml
- .env.example
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
use: github
filters:
exclude:
- '^docs:'
- '^test:'
- '^ci:'
- Merge pull request
- Merge branch
groups:
- title: 'New Features'
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug Fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: 'Performance Improvements'
regexp: "^.*perf[(\\w)]*:+.*$"
order: 2
- title: 'Other Changes'
order: 999
release:
github:
owner: doITmagic
name: rag-code-mcp
draft: false
prerelease: auto
name_template: "{{.ProjectName}} v{{.Version}}"
header: |
## RagCode MCP Server v{{.Version}}
Semantic code navigation using RAG (Retrieval-Augmented Generation).
### Installation
**Linux (amd64):**
```bash
curl -L https://github.com/doITmagic/rag-code-mcp/releases/latest/download/rag-code-mcp_linux_amd64.tar.gz | tar xz
./ragcode-installer -ollama=docker -qdrant=docker
```
**macOS (Apple Silicon):**
```bash
curl -L https://github.com/doITmagic/rag-code-mcp/releases/latest/download/rag-code-mcp_darwin_arm64.tar.gz | tar xz
./ragcode-installer -ollama=docker -qdrant=docker
```
**Or download the archive for your platform below.**
footer: |
### What's Next?
1. Install dependencies: Ollama and Qdrant
2. Configure your environment (see README.md)
3. Start the server: `rag-code-mcp`
**Full documentation:** https://github.com/doITmagic/rag-code-mcp
# Homebrew tap (optional, can be enabled later)
# brews:
# - repository:
# owner: doITmagic
# name: homebrew-tap
# homepage: https://github.com/doITmagic/rag-code-mcp
# description: Semantic code navigation for Go codebases using RAG
# license: MIT