diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml index 11b0dd1..37e76c2 100644 --- a/.github/workflows/packaging.yml +++ b/.github/workflows/packaging.yml @@ -120,7 +120,7 @@ jobs: - name: Upload python wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: python_wheel-${{ matrix.os }}-${{ matrix.python_version }} path: wheelhouse/*.whl if-no-files-found: error @@ -145,7 +145,8 @@ jobs: - name: Download python wheel artifacts uses: actions/download-artifact@v4 with: - name: wheels + pattern: python_wheel-* + merge-multiple: true path: dist/ - name: Display artifacts