diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7e57e2c2..009bf18cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Store artifacts uses: actions/upload-artifact@v4 with: - name: artifact + name: cibw-sdist path: dist/* build_wheels: @@ -80,7 +80,7 @@ jobs: - name: Store artifacts uses: actions/upload-artifact@v4 with: - name: artifact + name: cibw-wheels-${{ runner.os }}-${{ matrix.manylinux_version }}-${{ matrix.archs }} path: dist/*.whl publish: @@ -88,10 +88,12 @@ jobs: needs: [build_wheels, build_sdist] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v4 + - name: Download all the dists + uses: actions/download-artifact@v4.1.7 with: - name: artifact + pattern: cibw-* path: dist + merge-multiple: true - uses: pypa/gh-action-pypi-publish@release/v1 with: