From 74678fd527500dba9f3a1290fa181a36c8fff5de Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 11 Sep 2023 11:27:12 +0100 Subject: [PATCH] Download wheels before publishing to pypi --- .github/workflows/test_and_build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test_and_build.yaml b/.github/workflows/test_and_build.yaml index f816f85..286ac32 100644 --- a/.github/workflows/test_and_build.yaml +++ b/.github/workflows/test_and_build.yaml @@ -115,6 +115,10 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') needs: [release-test] steps: + - uses: actions/download-artifact@v3 + with: + name: wheels + path: dist - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: