-
QuestionThe latest Codex release on GitHub is I understand that users can download the latest version directly from GitHub, but since Homebrew is a supported installation method, it would be helpful if the cask were updated promptly after each release. Answer requestedCould you clarify:
Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I think there are two slightly different package lines worth separating here:
For the CLI cask, Homebrew currently has livecheck do
url :url
regex(/^rust-v?(\d+(?:\.\d+)+)$/i)
strategy :github_latest
endSo Homebrew can detect that a newer release exists, but the cask file still has to be bumped in The previous If you need the newest CLI immediately, I’d use the GitHub release directly. If you want the normal Homebrew-managed install, I’d wait for the cask bump. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for clarifying |
Beta Was this translation helpful? Give feedback.
I think there are two slightly different package lines worth separating here:
codexHomebrew cask: currently points at the CLI release tarballs fromopenai/codexcodex-appHomebrew cask: points at the desktop app build feed and uses a separate26.xstyle versionFor the CLI cask, Homebrew currently has
codexat0.130.0, while the latest stable GitHub release isrust-v0.131.0. The cask has alivecheckblock using GitHub latest releases:So Homebrew can detect that a newer release exists, but the cask file still has to be bumped in
Homebrew/homebrew-cask. In practice that means there can be a delay …