Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI/CD] Update upload-artifacts and download-artifcats. #8090

Merged
merged 1 commit into from
Jan 16, 2025
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
# Upload the format patches to an artifact (zip'd) associated
# with the workflow run. Only run this on a failure.
- name: Upload format patches
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
continue-on-error: true
if: ${{ failure() }}
with:
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
# Upload the tidy patches to an artifact (zip'd) associated
# with the workflow run. Only run this on a failure.
- name: Upload tidy patches
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
continue-on-error: true
if: ${{ failure() }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unifiedBuildTestAndInstall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,14 +265,14 @@ jobs:

# Upload build artifacts
- name: Upload Binary (Non-Tag)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: inputs.install && github.ref_type != 'tag'
with:
name: ${{ steps.name_archive.outputs.name }}
path: ${{ steps.name_archive.outputs.name }}
retention-days: 7
- name: Upload SHA256 (Non-Tag)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: inputs.install && github.ref_type != 'tag'
with:
name: ${{ steps.name_archive.outputs.name }}.sha256
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/uploadWheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
SETUPTOOLS_SCM_DEBUG: True

- name: Upload (stage) wheels as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-wheels
name: python-wheels-${{ matrix.config.cibw_build }}
path: ./wheelhouse/*.whl
retention-days: 7
if-no-files-found: error
Expand All @@ -73,9 +73,10 @@ jobs:

steps:
- name: Download wheels
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-wheels
pattern: python-wheels-*
merge-multiple: true
path: ./wheelhouse/

- name: List downloaded wheels
Expand Down
Loading