Skip to content

Commit cee9d48

Browse files
Merge branch 'main' into fix-readme-cli-reference
2 parents cd54b21 + e42dacb commit cee9d48

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

.github/dotslash-config.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
}
1919
},
2020

21-
"codex-cli": {
21+
"codex": {
2222
"platforms": {
23-
"macos-aarch64": { "regex": "^codex-cli-aarch64-apple-darwin\\.zst$", "path": "codex-cli" },
24-
"macos-x86_64": { "regex": "^codex-cli-x86_64-apple-darwin\\.zst$", "path": "codex-cli" },
25-
"linux-x86_64": { "regex": "^codex-cli-x86_64-unknown-linux-musl\\.zst$", "path": "codex-cli" },
26-
"linux-aarch64": { "regex": "^codex-cli-aarch64-unknown-linux-gnu\\.zst$", "path": "codex-cli" }
23+
"macos-aarch64": { "regex": "^codex-aarch64-apple-darwin\\.zst$", "path": "codex" },
24+
"macos-x86_64": { "regex": "^codex-x86_64-apple-darwin\\.zst$", "path": "codex" },
25+
"linux-x86_64": { "regex": "^codex-x86_64-unknown-linux-musl\\.zst$", "path": "codex" },
26+
"linux-aarch64": { "regex": "^codex-aarch64-unknown-linux-gnu\\.zst$", "path": "codex" }
2727
}
2828
},
2929

.github/workflows/rust-release.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,19 @@ jobs:
104104
105105
cp target/${{ matrix.target }}/release/codex-repl "$dest/codex-repl-${{ matrix.target }}"
106106
cp target/${{ matrix.target }}/release/codex-exec "$dest/codex-exec-${{ matrix.target }}"
107-
cp target/${{ matrix.target }}/release/codex-cli "$dest/codex-cli-${{ matrix.target }}"
107+
cp target/${{ matrix.target }}/release/codex "$dest/codex-${{ matrix.target }}"
108108
109-
- if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }} || ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
109+
- if: ${{ matrix.target == 'x86_64-unknown-linux-musl' || matrix.target == 'aarch64-unknown-linux-gnu' }}
110110
name: Stage Linux-only artifacts
111111
shell: bash
112112
run: |
113+
dest="dist/${{ matrix.target }}"
113114
cp target/${{ matrix.target }}/release/codex-linux-sandbox "$dest/codex-linux-sandbox-${{ matrix.target }}"
114115
115116
- name: Compress artifacts
116117
shell: bash
117118
run: |
119+
dest="dist/${{ matrix.target }}"
118120
zstd -T0 -19 --rm "$dest"/*
119121
120122
- uses: actions/upload-artifact@v4

codex-rs/Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codex-rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "0.0.2504291926"
15+
version = "0.0.2504292236"
1616

1717
[profile.release]
1818
lto = "fat"

0 commit comments

Comments
 (0)