Skip to content

Commit c02d25f

Browse files
authored
fix: include codex-linux-sandbox-aarch64-unknown-linux-musl in the set of release artifacts (#1230)
This was missed in #1225. Once we create a new GitHub Release with this change, we can use the URL from the workflow that triggered the release in #1228.
1 parent 9db53b3 commit c02d25f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/rust-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ jobs:
107107
cp target/${{ matrix.target }}/release/codex-exec "$dest/codex-exec-${{ matrix.target }}"
108108
cp target/${{ matrix.target }}/release/codex "$dest/codex-${{ matrix.target }}"
109109
110-
- if: ${{ matrix.target == 'x86_64-unknown-linux-musl' || matrix.target == 'x86_64-unknown-linux-gnu' || matrix.target == 'aarch64-unknown-linux-gnu' }}
110+
# After https://github.com/openai/codex/pull/1228 is merged and a new
111+
# release is cut with an artifacts built after that PR, the `-gnu`
112+
# variants can go away as we will only use the `-musl` variants.
113+
- 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' }}
111114
name: Stage Linux-only artifacts
112115
shell: bash
113116
run: |

0 commit comments

Comments
 (0)