Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/bump-tap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,19 @@ jobs:
bump:
runs-on: ubuntu-latest
steps:
# Homebrew refuses to load formulae from untrusted taps; trust ours before the action taps+loads it.
- run: |
brew tap IvanRublev/homebrew-tap
brew trust IvanRublev/homebrew-tap
- uses: dawidd6/action-homebrew-bump-formula@v3
with:
# PAT with `repo` scope on the tap repo. Store as an Actions secret.
token: ${{ secrets.TAP_TOKEN }}
tap: IvanRublev/homebrew-tap
formula: claudezero
# Push branch directly to the tap repo instead of forking (token needs write access there).
no_fork: true
# No release payload on a tag push — name the tag and commit explicitly.
tag: ${{ github.ref_name }}
revision: ${{ github.sha }}
# Opens a PR on the tap by default. Add `push: true` to commit direct.
push: true
# Opens a PR on the tap (no direct-push mode exists for this action).
Loading