From afa2d0a6b3dcbb4149d4ff183295f7081f5eec97 Mon Sep 17 00:00:00 2001 From: ringsaturn Date: Tue, 2 Jan 2024 23:20:49 +0800 Subject: [PATCH] Fix release --- .github/workflows/release-python.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index c15675f..ac3db44 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -85,14 +85,14 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - pattern: wheels - path: "wheels" + pattern: wheels* + path: "target/wheels" - - name: Upload Coverage Report + - name: Upload uses: actions/upload-artifact@v4 with: name: "wheels" - path: "wheels" + path: "target/wheels" retention-days: 3 - name: Release @@ -100,7 +100,7 @@ jobs: if: github.event_name == 'release' && github.event.action == 'published' with: files: | - wheels + target/wheels - name: Publish to PyPI uses: messense/maturin-action@v1