-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.goreleaser.yml
More file actions
68 lines (64 loc) · 1.38 KB
/
Copy path.goreleaser.yml
File metadata and controls
68 lines (64 loc) · 1.38 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
version: 2
project_name: loki-mcp-server
builds:
- main: ./cmd/loki-mcp-server
binary: loki-mcp-server
ldflags:
- -s -w -X main.version={{.Version}}
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
- freebsd
goarch:
- amd64
- arm64
- "386"
- ppc64le
- s390x
- riscv64
ignore:
- goos: darwin
goarch: "386"
- goos: darwin
goarch: ppc64le
- goos: darwin
goarch: s390x
- goos: darwin
goarch: riscv64
- goos: windows
goarch: ppc64le
- goos: windows
goarch: s390x
- goos: windows
goarch: riscv64
- goos: freebsd
goarch: ppc64le
- goos: freebsd
goarch: s390x
- goos: freebsd
goarch: riscv64
archives:
- formats:
- tar.gz
format_overrides:
- goos: windows
formats:
- zip
checksum:
name_template: "checksums.txt"
brews:
- repository:
owner: incu6us
name: homebrew-tap
directory: Formula
name: loki-mcp-server
homepage: "https://github.com/incu6us/loki-mcp-server"
description: "MCP server exposing Grafana Loki log querying as MCP tools"
license: "MIT"
install: |
bin.install "loki-mcp-server"
test: |
assert_match version.to_s, shell_output("#{bin}/loki-mcp-server --version")