From f063b825747027304db4b250526ebce7ce0b4ed9 Mon Sep 17 00:00:00 2001 From: Arthur Zamarin Date: Fri, 1 Mar 2024 22:03:39 +0200 Subject: ci: fix release pipeline Signed-off-by: Arthur Zamarin --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79da0a62..e2699eb5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: - name: Upload sdist artifact uses: actions/upload-artifact@v4 with: - name: dist + name: dist-sdist path: dist/*.tar.gz @@ -62,7 +62,7 @@ jobs: platforms: ${{matrix.arch}} - name: Build wheels - uses: joerick/cibuildwheel@v2.16.3 + uses: joerick/cibuildwheel@v2.16.5 with: output-dir: dist env: @@ -71,7 +71,7 @@ jobs: - name: Upload wheel artifacts uses: actions/upload-artifact@v4 with: - name: dist + name: dist-wheel-${{matrix.arch}} path: dist/*.whl @@ -89,7 +89,7 @@ jobs: steps: - uses: actions/download-artifact@v3 with: - name: dist + pattern: dist-* path: dist merge-multiple: true -- cgit v1.2.3-65-gdbad