From fb760718e2218354e9b182ccdab971a156a82f04 Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Tue, 7 Oct 2025 22:55:23 +0800 Subject: [PATCH] ci(homebrew): add workflow to auto-bump Homebrew formula on release --- .github/workflows/homebrew.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/homebrew.yml diff --git a/.github/workflows/homebrew.yml b/.github/workflows/homebrew.yml new file mode 100644 index 00000000..18620851 --- /dev/null +++ b/.github/workflows/homebrew.yml @@ -0,0 +1,16 @@ +name: Bump Homebrew formula + +on: + release: + types: [ released ] + +jobs: + homebrew: + name: Bump Homebrew formula + runs-on: ubuntu-latest + steps: + - name: Update Homebrew Formula + uses: dawidd6/action-homebrew-bump-formula@v5 + with: + token: ${{ secrets.HOMEBREW_TOKEN }} + formula: cliproxyapi \ No newline at end of file