From c02d25fbad98a5e06cd761b0f574576f4bd18e5e Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Thu, 5 Jun 2025 22:03:07 -0700 Subject: [PATCH] fix: include codex-linux-sandbox-aarch64-unknown-linux-musl in the set of release artifacts (#1230) This was missed in https://github.com/openai/codex/pull/1225. Once we create a new GitHub Release with this change, we can use the URL from the workflow that triggered the release in https://github.com/openai/codex/pull/1228. --- .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 7c896223..83f16075 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: |