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
8 changes: 6 additions & 2 deletions maintainer_docs/MAINTAINER.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,16 @@ gh run watch "$(gh run list --workflow update-homebrew-formula.yml --limit 1 \
```

It checks out `main`, points the formula at the release, verifies the digest,
and pushes. Confirm afterwards if you like:
and pushes. To confirm afterwards, switch back to `main` first — the bot's
commit landed there, not on your release branch:

```bash
git pull && python3 homebrew_formula.py --check # → "pin is current."
git switch main && git pull
python3 homebrew_formula.py --check
```

It should print `Homebrew formula pin is current.`

### Order matters

The formula records a release tarball **and its sha256**, and a sha256 is a
Expand Down