diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b3c591d1..3b74bb44 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ on: jobs: build_wheels: - name: ${{ matrix.os }} ${{ matrix.cibw_archs }} ${{ matrix.cw_build }} + name: ${{ matrix.os }} ${{ matrix.cibw_archs }} ${{ matrix.cibw_build }} runs-on: ${{ matrix.os }} strategy: matrix: @@ -74,9 +74,16 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Download all artifacts to dist/ + - name: Download sdist artifacts to dist/ uses: actions/download-artifact@v3 with: + name: sdist + path: dist/ + + - name: Download wheelhouse artifacts to dist/ + uses: actions/download-artifact@v3 + with: + name: wheelhouse path: dist/ - name: Publish package to PyPI