@@ -9,25 +9,25 @@ When you create a GitHub release with a version tag (e.g., `v1.0.0`), a GitHub A
991 . Downloads the release tarball
10102 . Calculates the SHA256 hash
11113 . Updates the Homebrew formula
12- 4 . Commits to the ` homebrew-warp ` repository
12+ 4 . Commits to the ` homebrew-tools ` repository
13135 . Users can then install with ` brew install warp `
1414
1515## Setup Steps
1616
17- ### Step 1: Create ` homebrew-warp ` Repository
17+ ### Step 1: Create ` homebrew-tools ` Repository
1818
19- Create a new GitHub repository named ` homebrew-warp ` :
19+ Create a new GitHub repository named ` homebrew-tools ` :
2020
2121``` bash
22- github.com/zero8dotdev/homebrew-warp
22+ github.com/zero8dotdev/homebrew-tools
2323```
2424
2525### Step 2: Set Up Repository Structure
2626
27- In ` homebrew-warp ` , create this structure:
27+ In ` homebrew-tools ` , create this structure:
2828
2929```
30- homebrew-warp /
30+ homebrew-tools /
3131├── Formula/
3232│ └── warp.rb # Homebrew formula (see warp.rb in main repo)
3333├── README.md
@@ -42,7 +42,7 @@ homebrew-warp/
4242- ` warp.rb ` - Homebrew formula template
4343- ` .github/workflows/publish-homebrew.yml ` - Auto-publish workflow
4444
45- ** In homebrew-warp repository:**
45+ ** In homebrew-tools repository:**
4646- Copy the files to their respective locations
4747- Create ` README.md ` with installation instructions
4848
@@ -79,16 +79,16 @@ Then on GitHub:
7979
8080GitHub Actions will automatically:
8181- Calculate SHA256
82- - Update ` homebrew-warp /Formula/warp.rb `
83- - Commit and push to ` homebrew-warp `
82+ - Update ` homebrew-tools /Formula/warp.rb `
83+ - Commit and push to ` homebrew-tools `
8484- Comment on the release with installation instructions
8585
8686### Step 7: Users Can Install
8787
8888After the workflow completes, users can install with:
8989
9090``` bash
91- brew tap zero8dotdev/warp
91+ brew tap zero8dotdev/tools
9292brew install warp
9393```
9494
@@ -113,7 +113,7 @@ brew upgrade warp
113113 ↓
1141145. Updates Formula/warp.rb with new version & SHA256
115115 ↓
116- 6. Commits to homebrew-warp repo
116+ 6. Commits to homebrew-tools repo
117117 ↓
1181187. Users can install: brew tap zero8dotdev/warp && brew install warp
119119```
@@ -144,15 +144,15 @@ The workflow will automatically handle:
144144
145145Check ` .github/workflows/publish-homebrew.yml ` logs:
146146- Is token valid?
147- - Does homebrew-warp repo exist?
147+ - Does homebrew-tools repo exist?
148148- Is token permissions correct?
149149
150150### Manual Update
151151
152- If automated workflow fails, manually update ` homebrew-warp ` :
152+ If automated workflow fails, manually update ` homebrew-tools ` :
153153
154154``` bash
155- # In homebrew-warp repository
155+ # In homebrew-tools repository
156156git checkout Formula/warp.rb
157157# Update url to new version
158158# Update sha256 with output of: shasum -a 256 warp-v0.2.0.tar.gz
@@ -184,7 +184,7 @@ brew install warp # No tap needed!
184184
185185### Installation Command (for users)
186186``` bash
187- brew tap zero8dotdev/warp
187+ brew tap zero8dotdev/tools
188188brew install warp
189189```
190190
@@ -203,8 +203,8 @@ git push origin v1.0.0
203203## Next Steps
204204
2052051 . ✅ Files are ready in this repository
206- 2 . Create ` homebrew-warp ` repository on GitHub
207- 3 . Copy files to ` homebrew-warp `
206+ 2 . Create ` homebrew-tools ` repository on GitHub
207+ 3 . Copy files to ` homebrew-tools `
2082084 . Set up ` HOMEBREW_TAP_TOKEN ` secret
2092095 . Create first release
2102106 . Test installation with ` brew tap zero8dotdev/warp && brew install warp `
0 commit comments