mirror of
https://github.com/openai/codex.git
synced 2026-05-28 06:55:01 +00:00
## Why The zsh release workflow currently publishes macOS arm64 and Linux zsh fork artifacts, but no macOS x64 artifact. The Codex package builder therefore cannot include codex-resources/zsh/bin/zsh for x86_64-apple-darwin packages. ## What Changed - Added an x86_64-apple-darwin row to the macOS zsh release matrix. - Runs that row on macos-15-large, the Intel macOS runner appropriate for the native zsh build. - Added the matching macos-x86_64 platform to the zsh DotSlash publish config so the generated release manifest can reference the new tarball.
29 lines
744 B
JSON
29 lines
744 B
JSON
{
|
|
"outputs": {
|
|
"codex-zsh": {
|
|
"platforms": {
|
|
"macos-aarch64": {
|
|
"name": "codex-zsh-aarch64-apple-darwin.tar.gz",
|
|
"format": "tar.gz",
|
|
"path": "codex-zsh/bin/zsh"
|
|
},
|
|
"macos-x86_64": {
|
|
"name": "codex-zsh-x86_64-apple-darwin.tar.gz",
|
|
"format": "tar.gz",
|
|
"path": "codex-zsh/bin/zsh"
|
|
},
|
|
"linux-x86_64": {
|
|
"name": "codex-zsh-x86_64-unknown-linux-musl.tar.gz",
|
|
"format": "tar.gz",
|
|
"path": "codex-zsh/bin/zsh"
|
|
},
|
|
"linux-aarch64": {
|
|
"name": "codex-zsh-aarch64-unknown-linux-musl.tar.gz",
|
|
"format": "tar.gz",
|
|
"path": "codex-zsh/bin/zsh"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|