From a577d56432587b7ccc19c7377e86a7088c015644 Mon Sep 17 00:00:00 2001 From: VibeXP Bot Date: Mon, 2 Feb 2026 13:35:59 +0100 Subject: [PATCH 1/2] Add Homebrew formula update to release workflow Automatically updates the Homebrew formula in shaharia-lab/homebrew-tap when a new release is published. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3b1ac47..1203345 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,3 +72,12 @@ jobs: uses: softprops/action-gh-release@v1 with: files: ${{ matrix.asset_name }}.zip + + 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 + secrets: + tap-token: ${{ secrets.HOMEBREW_TAP_TOKEN }} \ No newline at end of file From 133283b54f7b327908d4601e8a3c22a0b82f6c2f Mon Sep 17 00:00:00 2001 From: VibeXP Bot Date: Mon, 2 Feb 2026 13:44:37 +0100 Subject: [PATCH 2/2] Pass tag-name to Homebrew update workflow Ensures the correct release version is used. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1203345..40b8b4b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,5 +79,6 @@ jobs: 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