From 8b66da118e64f5b3279916276ba455fe99520ed2 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Thu, 5 Jun 2025 21:55:57 -0700 Subject: [PATCH] fix: include codex-linux-sandbox-aarch64-unknown-linux-musl in the set of release artifacts --- .github/workflows/rust-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-release.yml b/.github/workflows/rust-release.yml index 7c89622390..83f160757a 100644 --- a/.github/workflows/rust-release.yml +++ b/.github/workflows/rust-release.yml @@ -107,7 +107,10 @@ jobs: cp target/${{ matrix.target }}/release/codex-exec "$dest/codex-exec-${{ matrix.target }}" cp target/${{ matrix.target }}/release/codex "$dest/codex-${{ matrix.target }}" - - if: ${{ matrix.target == 'x86_64-unknown-linux-musl' || matrix.target == 'x86_64-unknown-linux-gnu' || matrix.target == 'aarch64-unknown-linux-gnu' }} + # After https://github.com/openai/codex/pull/1228 is merged and a new + # release is cut with an artifacts built after that PR, the `-gnu` + # variants can go away as we will only use the `-musl` variants. + - if: ${{ matrix.target == 'x86_64-unknown-linux-musl' || matrix.target == 'x86_64-unknown-linux-gnu' || matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'aarch64-unknown-linux-musl' }} name: Stage Linux-only artifacts shell: bash run: |