diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c1777a..e5d73d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,10 +42,10 @@ jobs: CIBW_ARCHS_LINUX: auto aarch64 CIBW_BUILD_VERBOSITY: 3 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: - name: wheelhouse - path: ./wheelhouse/*.whl + name: wheelhouse-${{ matrix.os }} + path: dist upload: # Skip this step on pull requests. Run only when pushing a version tag. @@ -61,11 +61,10 @@ jobs: - name: Stage wheels uses: actions/download-artifact@v4 with: - name: wheelhouse - path: wheelhouse + pattern: wheelhouse-* + merge-multiple: true + path: dist - run: | - mkdir dist - mv -v wheelhouse/* dist/ ls -l dist/ - name: Publish package