diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9a17dc9..914b7d5 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -64,20 +64,26 @@ jobs: merge-artifacts: name: Download and create one artifact from all jobs - needs: wheel + needs: + - sdist + - wheel runs-on: ubuntu-20.04 steps: - - name: Download Artifacts + - name: Download sdist artifact uses: actions/download-artifact@v4 with: - path: wheelhouse + path: dist + name: sdist + + - name: Download wheel artifacts + uses: actions/download-artifact@v4 + with: + path: dist pattern: wheels-* merge-multiple: true - - run: ls -l wheelhouse - - uses: actions/upload-artifact@v4 with: - name: wheels - path: wheelhouse/*.whl + name: dist + path: dist if-no-files-found: error