Skip to content

Commit cd8c6d4

Browse files
committed
fix: Update GoReleaser config for tinybrain binary name
1 parent d15b7a9 commit cd8c6d4

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.goreleaser.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ version: 2
66
before:
77
hooks:
88
# Run tests before building
9-
- go test -v ./cmd/server
9+
- go test -v ./cmd/tinybrain
1010

1111
builds:
12-
- id: server
13-
main: ./cmd/server
14-
binary: server
12+
- id: tinybrain
13+
main: ./cmd/tinybrain
14+
binary: tinybrain
1515
env:
1616
- CGO_ENABLED=0
1717
goos:
@@ -87,7 +87,7 @@ release:
8787
8888
**Using go install:**
8989
```bash
90-
go install github.com/rainmana/tinybrain/cmd/server@{{ .Tag }}
90+
go install github.com/rainmana/tinybrain/cmd/tinybrain@{{ .Tag }}
9191
```
9292
9393
**Download pre-built binary:**
@@ -106,13 +106,13 @@ release:
106106
After downloading and extracting:
107107
```bash
108108
# Make executable (Linux/macOS)
109-
chmod +x server
109+
chmod +x tinybrain
110110
111111
# Run the server
112-
./server serve
112+
./tinybrain serve
113113
114114
# Or with custom port
115-
./server serve --http=127.0.0.1:9000
115+
./tinybrain serve --http=127.0.0.1:9000
116116
```
117117
118118
For full documentation, visit the [README](https://github.com/rainmana/tinybrain).

0 commit comments

Comments
 (0)