From 413df16baafd8aec636a6998114006f533790dca Mon Sep 17 00:00:00 2001 From: Tw93 Date: Sat, 4 Oct 2025 07:18:14 +0800 Subject: [PATCH] :sparkles: Add brew --- .github/workflows/update-homebrew.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/update-homebrew.yml diff --git a/.github/workflows/update-homebrew.yml b/.github/workflows/update-homebrew.yml new file mode 100644 index 0000000..78df171 --- /dev/null +++ b/.github/workflows/update-homebrew.yml @@ -0,0 +1,19 @@ +name: Update Homebrew Formula + +on: + push: + tags: + - 'V*' + +jobs: + update-formula: + runs-on: ubuntu-latest + steps: + - name: Update Homebrew formula + uses: mislav/bump-homebrew-formula-action@v3 + with: + formula-name: mole + formula-path: Formula/mole.rb + homebrew-tap: tw93/homebrew-tap + env: + COMMITTER_TOKEN: ${{ secrets.PAT_TOKEN }}