Skip to content

Commit e7bf12b

Browse files
ashu17706claude
andcommitted
fix: update workflow to use warp-cli formula name
Update all references from warp.rb to warp-cli.rb to match the renamed formula that avoids conflict with the existing 'warp' cask (Warp terminal). Users install with: brew install zero8dotdev/tools/warp-cli Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
1 parent 335e3c5 commit e7bf12b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish-homebrew.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Update formula
4949
run: |
50-
cat > homebrew-tools/Formula/warp.rb << 'EOF'
50+
cat > homebrew-tools/Formula/warp-cli.rb << 'EOF'
5151
class Warp < Formula
5252
desc "Beautiful CLI for Cloudflare WARP - Control your VPN from the terminal"
5353
homepage "https://github.com/zero8dotdev/warp-cli"
@@ -84,15 +84,15 @@ jobs:
8484
run: |
8585
git config user.name "GitHub Actions"
8686
git config user.email "actions@github.com"
87-
git add Formula/warp.rb
87+
git add Formula/warp-cli.rb
8888
git commit -m "chore: bump warp to ${{ env.VERSION }}"
8989
git push
9090
9191
- name: Verify formula updated
9292
run: |
93-
if [ -f "homebrew-tools/Formula/warp.rb" ]; then
93+
if [ -f "homebrew-tools/Formula/warp-cli.rb" ]; then
9494
echo "✅ Formula successfully updated in homebrew-tools tap"
95-
grep -A2 "url " homebrew-tools/Formula/warp.rb | head -3
95+
grep -A2 "url " homebrew-tools/Formula/warp-cli.rb | head -3
9696
else
9797
echo "❌ Formula file not found"
9898
exit 1

0 commit comments

Comments
 (0)