From 24278347b72e8a0e44415d510b7a3f2b8f3bf042 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Wed, 30 Apr 2025 12:10:24 -0700 Subject: [PATCH] fix: remove codex-repl from GitHub workflows (#760) I missed this when doing https://github.com/openai/codex/pull/754. --- .github/dotslash-config.json | 9 --------- .github/workflows/rust-release.yml | 1 - 2 files changed, 10 deletions(-) diff --git a/.github/dotslash-config.json b/.github/dotslash-config.json index 7034b2bb..7ed1f9a6 100644 --- a/.github/dotslash-config.json +++ b/.github/dotslash-config.json @@ -1,14 +1,5 @@ { "outputs": { - "codex-repl": { - "platforms": { - "macos-aarch64": { "regex": "^codex-repl-aarch64-apple-darwin\\.zst$", "path": "codex-repl" }, - "macos-x86_64": { "regex": "^codex-repl-x86_64-apple-darwin\\.zst$", "path": "codex-repl" }, - "linux-x86_64": { "regex": "^codex-repl-x86_64-unknown-linux-musl\\.zst$", "path": "codex-repl" }, - "linux-aarch64": { "regex": "^codex-repl-aarch64-unknown-linux-gnu\\.zst$", "path": "codex-repl" } - } - }, - "codex-exec": { "platforms": { "macos-aarch64": { "regex": "^codex-exec-aarch64-apple-darwin\\.zst$", "path": "codex-exec" }, diff --git a/.github/workflows/rust-release.yml b/.github/workflows/rust-release.yml index 396a0a3c..81407048 100644 --- a/.github/workflows/rust-release.yml +++ b/.github/workflows/rust-release.yml @@ -102,7 +102,6 @@ jobs: dest="dist/${{ matrix.target }}" mkdir -p "$dest" - cp target/${{ matrix.target }}/release/codex-repl "$dest/codex-repl-${{ matrix.target }}" cp target/${{ matrix.target }}/release/codex-exec "$dest/codex-exec-${{ matrix.target }}" cp target/${{ matrix.target }}/release/codex "$dest/codex-${{ matrix.target }}"