|
15 | 15 | # 5. pushes the release commit and tag only after artifacts exist, |
16 | 16 | # 6. creates the GitHub release on corbitsdev/corbits-code with those assets, |
17 | 17 | # 7. regenerates the Homebrew formula (per-arch url + sha256) in the |
18 | | -# corbitsdev/code tap and pushes it, so `brew install corbits` works. |
| 18 | +# corbitsdev/homebrew-tap tap and pushes it, so `brew install corbits` works. |
19 | 19 | # |
20 | 20 | # Every step is idempotent: a stage whose artifact already exists is skipped, |
21 | 21 | # so a half-finished release can be completed by re-running with the version. |
|
24 | 24 | # |
25 | 25 | # Requirements: run on a Mac with git, gh (authenticated), bun, jq, ar, tar, |
26 | 26 | # and shasum available. `bun build --compile` cross-compiles every target |
27 | | -# from here; no Linux host is needed. For the tap step, the corbitsdev/code |
28 | | -# tap must be tapped (brew tap corbitsdev/code) or reachable so it can clone. |
| 27 | +# from here; no Linux host is needed. For the tap step, the corbitsdev/tap |
| 28 | +# tap must be tapped (brew tap corbitsdev/tap) or reachable so it can clone. |
29 | 29 |
|
30 | 30 | set -euo pipefail |
31 | 31 |
|
32 | 32 | # ---- configuration --------------------------------------------------------- |
33 | 33 | MAIN_REPO="corbitsdev/corbits-code" # source repo (releases + tags) |
34 | | -TAP_REPO="corbitsdev/homebrew-code" # tap repo (formula) |
35 | | -TAP_SLUG="corbitsdev/code" # `brew tap' name of TAP_REPO |
| 34 | +TAP_REPO="corbitsdev/homebrew-tap" # tap repo (formula) |
| 35 | +TAP_SLUG="corbitsdev/tap" # `brew tap' name of TAP_REPO |
36 | 36 | FORMULA="corbits" # formula / binary name |
37 | 37 | DESC="Single-process coding agent CLI built on the Interchange runtime" |
38 | 38 | DOC_FILES=(LICENSE.md README.md GPLv2-AI-Exception.md GPL-2.0.txt) # shipped with the binary |
|
0 commit comments