From 0a8cf70e73d369d68a9f6042d36ffa03bade03f1 Mon Sep 17 00:00:00 2001 From: mash Date: Tue, 17 Feb 2026 04:55:37 -0800 Subject: [PATCH] fix(ci): use correct homebrew-tap repo name in release workflow The tap repo was renamed from homebrew-mcpmux to homebrew-tap, but the update-homebrew job still referenced the old name. This caused the job to fail silently, leaving the cask with placeholder SHA256 values and breaking `brew install --cask mcpmux/tap/mcpmux`. Co-Authored-By: Claude Opus 4.6 Signed-off-by: mash --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1647ae9a..a8ce389a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -264,7 +264,7 @@ jobs: --repo "${{ github.repository }}" # ───────────────────────────────────────────────────────────── - # Update Homebrew Tap: Push new version to homebrew-mcpmux + # Update Homebrew Tap: Push new version to homebrew-tap # ───────────────────────────────────────────────────────────── update-homebrew: needs: [release-please, publish-release] @@ -294,7 +294,7 @@ jobs: echo "x64 SHA256: $SHA_X64" # Clone the tap repo and update the cask - git clone https://x-access-token:${GH_TOKEN}@github.com/mcpmux/homebrew-mcpmux.git tap + git clone https://x-access-token:${GH_TOKEN}@github.com/mcpmux/homebrew-tap.git tap # Generate cask file (Ruby heredoc content with shell variable expansion) CASK_FILE="tap/Casks/mcpmux.rb"