From b8ce0c6635426d12f62a2309264b20a52417c4f7 Mon Sep 17 00:00:00 2001 From: jodhus Date: Tue, 3 Sep 2024 20:34:33 -0400 Subject: [PATCH] Potential fix to upload/download artifacts. --- .github/workflows/build-test-pypi.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test-pypi.yml b/.github/workflows/build-test-pypi.yml index a70ecb9..a2f5cf1 100644 --- a/.github/workflows/build-test-pypi.yml +++ b/.github/workflows/build-test-pypi.yml @@ -85,6 +85,7 @@ jobs: - name: Upload wheels to artifact container uses: actions/upload-artifact@v4 with: + name: dist-${{ matrix.os }}-${{ matrix.python }} path: wheelhouse/*.whl upload_all: @@ -94,7 +95,8 @@ jobs: - name: Get SDist and wheels from artifact container uses: actions/download-artifact@v4 with: - name: artifact + pattern: dist-* + merge-multiple: true path: dist - name: Publish wheels to Test PyPI uses: pypa/gh-action-pypi-publish@v1.10.1