Skip to content

Commit 36d573a

Browse files
committed
chore: remove homebrew and scoop from goreleaser config
1 parent 4e8592f commit 36d573a

File tree

1 file changed

+8
-43
lines changed

1 file changed

+8
-43
lines changed

.goreleaser.yaml

Lines changed: 8 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,14 @@ release:
8282
8383
### Installation
8484
85-
#### Universal Install Script (Recommended)
85+
#### Unix/Linux/macOS
8686
```bash
8787
curl -sSL https://vapi.ai/install.sh | bash
8888
```
8989
90-
#### Package Managers
91-
```bash
92-
# npm
93-
npm install -g @vapi-ai/cli
94-
95-
# Homebrew (macOS/Linux)
96-
brew tap VapiAI/homebrew-tap && brew install vapi-cli
97-
98-
# Scoop (Windows)
99-
scoop bucket add vapi https://github.com/VapiAI/scoop-bucket && scoop install vapi-cli
90+
#### Windows
91+
```powershell
92+
iex ((New-Object System.Net.WebClient).DownloadString('https://vapi.ai/install.ps1'))
10093
```
10194
10295
#### Docker
@@ -117,34 +110,7 @@ release:
117110
118111
_Built with ❤️ by the Vapi team_
119112
120-
# Homebrew tap configuration
121-
brews:
122-
- repository:
123-
owner: VapiAI
124-
name: homebrew-tap
125-
branch: main
126-
name: vapi-cli
127-
homepage: "https://vapi.ai"
128-
description: "Voice AI for developers - Vapi CLI"
129-
license: "MIT"
130-
test: |
131-
system "#{bin}/vapi", "--version"
132-
install: |
133-
bin.install "vapi"
134-
skip_upload: false
135-
136-
# Scoop bucket configuration (for Windows users)
137-
scoops:
138-
- repository:
139-
owner: VapiAI
140-
name: scoop-bucket
141-
branch: main
142-
directory: bucket
143-
name: vapi-cli
144-
homepage: "https://vapi.ai"
145-
description: "Voice AI for developers - Vapi CLI"
146-
license: MIT
147-
skip_upload: false
113+
# Package managers removed - using install scripts instead
148114

149115
# Docker images (containerized usage)
150116
dockers:
@@ -169,10 +135,9 @@ announce:
169135
message_template: |
170136
🚀 **Vapi CLI {{.Tag}} Released!**
171137
172-
📦 **Distribution:**
173-
• Universal: `curl -sSL https://vapi.ai/install.sh | bash`
174-
• npm: `npm install -g @vapi-ai/cli`
175-
• Homebrew: `brew tap VapiAI/homebrew-tap && brew install vapi-cli`
138+
📦 **Installation:**
139+
• Unix/Linux/macOS: `curl -sSL https://vapi.ai/install.sh | bash`
140+
• Windows: `iex ((New-Object System.Net.WebClient).DownloadString('https://vapi.ai/install.ps1'))`
176141
• Docker: `docker run -it ghcr.io/vapiai/cli:{{.Tag}} --help`
177142
178143
🔗 **Links:**

0 commit comments

Comments
 (0)