From 4125491113cc3ff7c49eac7b1a8cd7125280dab3 Mon Sep 17 00:00:00 2001 From: jodhus Date: Tue, 3 Sep 2024 21:11:54 -0400 Subject: [PATCH] Potential fix for uploading artifacts. --- .github/workflows/build-test-pypi.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test-pypi.yml b/.github/workflows/build-test-pypi.yml index e482d7d..2698012 100644 --- a/.github/workflows/build-test-pypi.yml +++ b/.github/workflows/build-test-pypi.yml @@ -72,7 +72,7 @@ jobs: - name: Upload wheels to artifact container uses: actions/upload-artifact@v4 with: - name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} + #name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl upload_all: @@ -82,8 +82,7 @@ jobs: - name: Get SDist and wheels from artifact container uses: actions/download-artifact@v4 with: - pattern: dist-* - merge-multiple: true + name: artifact path: dist - name: Publish wheels to Test PyPI uses: pypa/gh-action-pypi-publish@v1.10.1