From ba092d2598c570bdc04680e31cd48e76e3f79191 Mon Sep 17 00:00:00 2001 From: VibeXP Bot Date: Mon, 2 Feb 2026 13:53:47 +0100 Subject: [PATCH] Inline Homebrew update step in release workflow Reusable workflows from private repos cannot be called by public repos. Inlining the step directly to fix the workflow. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40b8b4b..3a055b7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,9 +76,12 @@ jobs: update-homebrew: name: Update Homebrew Formula needs: build-release - uses: shaharia-lab/actions-library/.github/workflows/update-homebrew-formula.yml@main - with: - formula-name: codenav - tag-name: ${{ github.ref_name }} - secrets: - tap-token: ${{ secrets.HOMEBREW_TAP_TOKEN }} \ No newline at end of file + runs-on: ubuntu-latest + steps: + - uses: mislav/bump-homebrew-formula-action@v3 + with: + formula-name: codenav + tag-name: ${{ github.ref_name }} + homebrew-tap: shaharia-lab/homebrew-tap + env: + COMMITTER_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }} \ No newline at end of file