-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
117 lines (103 loc) · 2.54 KB
/
Copy path.goreleaser.yaml
File metadata and controls
117 lines (103 loc) · 2.54 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
version: 2
before:
hooks:
- go mod tidy
builds:
- id: daimon
main: ./cmd/daimon
binary: daimon
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
ldflags:
- -s -w
archives:
- formats:
- tar.gz
format_overrides:
- goos: windows
formats:
- zip
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
# .deb and .rpm for Linux package managers (apt, yum, dnf)
nfpms:
- id: daimon
package_name: daimon
homepage: https://github.com/sonicboom15/daimon
description: "The spirit that runs alongside your AI app — a pluggable sidecar runtime for LLMs"
maintainer: "sonicboom15 <rishikumar15@gmail.com>"
license: Apache-2.0
formats:
- deb
- rpm
bindir: /usr/local/bin
# Homebrew tap — requires sonicboom15/homebrew-tap repo
brews:
- repository:
owner: sonicboom15
name: homebrew-tap
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
directory: Formula
homepage: https://github.com/sonicboom15/daimon
description: "The spirit that runs alongside your AI app — a pluggable sidecar runtime for LLMs"
license: Apache-2.0
install: |
bin.install "daimon"
test: |
system "#{bin}/daimon", "--help"
# Scoop bucket — requires sonicboom15/scoop-bucket repo
scoops:
- repository:
owner: sonicboom15
name: scoop-bucket
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
homepage: https://github.com/sonicboom15/daimon
description: "The spirit that runs alongside your AI app — a pluggable sidecar runtime for LLMs"
license: Apache-2.0
checksum:
name_template: checksums.txt
changelog:
sort: asc
use: github
filters:
exclude:
- "^chore:"
- "^docs:"
- "^test:"
release:
github:
owner: sonicboom15
name: daimon
name_template: "v{{ .Version }}"
footer: |
## Install
**macOS / Linux — Homebrew**
```sh
brew tap sonicboom15/tap
brew install daimon
```
**Windows — Winget**
```powershell
winget install sonicboom15.daimon
```
**Windows — Scoop**
```powershell
scoop bucket add sonicboom15 https://github.com/sonicboom15/scoop-bucket
scoop install daimon
```
**Linux — apt**
```sh
# Download the .deb from assets below
sudo dpkg -i daimon_{{ .Version }}_linux_amd64.deb
```
**Linux — rpm**
```sh
# Download the .rpm from assets below
sudo rpm -i daimon_{{ .Version }}_linux_amd64.rpm
```