From ea4570e134c0a78387b2ecfccb033e26c07b75de Mon Sep 17 00:00:00 2001 From: MatthieuDartiailh Date: Mon, 9 Sep 2024 21:23:04 +0200 Subject: [PATCH] cis: update release workflow --- .github/workflows/release.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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: