Skip to content
New issue

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

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

Already on GitHub? # to your account

fix upload/download artifacts in CI, take 2 #88

Merged
merged 1 commit into from
Dec 9, 2024
Merged
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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: pypi_files
name: pypi_files-${{ matrix.os }}-${{ matrix.target }}-${{ matrix.interpreter || 'all' }}-${{ matrix.manylinux || 'auto' }}
path: dist

inspect-pypi-assets:
Expand All @@ -210,7 +210,8 @@ jobs:
- name: get dist artifacts
uses: actions/download-artifact@v4
with:
name: pypi_files
pattern: pypi_files-*
merge-multiple: true
path: dist

- name: list dist files
Expand Down Expand Up @@ -247,7 +248,8 @@ jobs:
- name: get dist artifacts
uses: actions/download-artifact@v4
with:
name: pypi_files
pattern: pypi_files-*
merge-multiple: true
path: dist

- run: ls -lh dist
Expand Down
Loading