Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
# removes unnecessary files from the release
- name: Download sdist (not macOS)
#if: ${{ matrix.buildplat[1] != 'macosx_*' }}
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: sdist
path: ./dist
Expand Down Expand Up @@ -238,11 +238,11 @@ jobs:

steps:
- name: Download all artefacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
path: dist # everything lands in ./dist/**

# TODO: This step can be probably be achieved by actions/download-artifact@v5
# TODO: This step can be probably be achieved by actions/download-artifact@v6
# by specifying merge-multiple: true, and a glob pattern
- name: Collect files
run: |
Expand Down
Loading