Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
echo "pack_output=$PACK_OUTPUT" >> "$GITHUB_OUTPUT"

- name: Upload staged npm package artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: ${{ github.repository == 'openai/codex' }}
with:
name: codex-npm-staging
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/rust-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:

- name: Upload Cargo timings
continue-on-error: true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cargo-timings-rust-release-${{ matrix.target }}
path: codex-rs/target/**/cargo-timings/cargo-timing.html
Expand Down Expand Up @@ -365,7 +365,7 @@ jobs:
- name: Upload release artifacts (attempt 1)
id: upload_release_artifacts_1
continue-on-error: true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.target }}
# Upload the per-binary .zst files as well as the new .tar.gz
Expand All @@ -377,15 +377,15 @@ jobs:
id: upload_release_artifacts_2
if: steps.upload_release_artifacts_1.outcome == 'failure'
continue-on-error: true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.target }}
path: |
codex-rs/dist/${{ matrix.target }}/*

- name: Upload release artifacts (attempt 3)
if: steps.upload_release_artifacts_2.outcome == 'failure'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.target }}
path: |
Expand Down Expand Up @@ -590,7 +590,7 @@ jobs:

- name: Upload Cargo timings
continue-on-error: true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cargo-timings-rust-release-${{ env.TARGET }}${{ env.ASSET_SUFFIX }}
path: codex-rs/target/**/cargo-timings/cargo-timing.html
Expand Down Expand Up @@ -631,7 +631,7 @@ jobs:
- name: Upload release artifacts (attempt 1)
id: upload_release_artifacts_1
continue-on-error: true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ env.TARGET }}${{ env.ASSET_SUFFIX }}
path: |
Expand All @@ -641,15 +641,15 @@ jobs:
id: upload_release_artifacts_2
if: steps.upload_release_artifacts_1.outcome == 'failure'
continue-on-error: true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ env.TARGET }}${{ env.ASSET_SUFFIX }}
path: |
codex-rs/dist/${{ env.TARGET }}${{ env.ASSET_SUFFIX }}/*

- name: Upload release artifacts (attempt 3)
if: steps.upload_release_artifacts_2.outcome == 'failure'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ env.TARGET }}${{ env.ASSET_SUFFIX }}
path: |
Expand Down
Loading