From 10afc371f27be626a8fcb5f30da3bd4c56389ae3 Mon Sep 17 00:00:00 2001 From: Seth Parker Date: Thu, 11 Jun 2026 14:31:08 -0400 Subject: [PATCH] publish: drop redundant `brew tap Homebrew/core` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Modern brew treats homebrew/core as an API-only tap and rejects `brew tap Homebrew/core` without --force. brew pr-pull does not need it tapped — it resolves formulae via the API. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 613d9a4..21d3012 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,8 +20,7 @@ jobs: HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ github.token }} HOMEBREW_GITHUB_PACKAGES_USER: ${{ github.actor }} PULL_REQUEST: ${{ github.event.pull_request.number }} - run: | - brew tap Homebrew/core + run: | brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST" - name: Push commits