From 95b267c2031609a6737cdd89563b93f57760ed7a Mon Sep 17 00:00:00 2001 From: mgrover1 Date: Wed, 6 Mar 2024 14:24:35 -0600 Subject: [PATCH] FIX: Fix the name of download-upload-artifact action --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 3f00ba2339..1700deeb9e 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -59,7 +59,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.os }} path: ./dist/*.whl build_sdist: @@ -94,7 +94,7 @@ jobs: - name: Download wheels uses: actions/download-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.os }} path: dist - name: Publish to PyPI