From ef5aaac25401a38bdd64c150e59d1859d7382e44 Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Wed, 22 Sep 2021 13:45:15 +0200 Subject: [PATCH] github-workflow: flatten directory structure for download artifacts for PyPI upload --- .github/workflows/pypi-deploy.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi-deploy.yml b/.github/workflows/pypi-deploy.yml index bb7fabe..328bb93 100644 --- a/.github/workflows/pypi-deploy.yml +++ b/.github/workflows/pypi-deploy.yml @@ -79,9 +79,15 @@ jobs: needs: [build_wheels, build_sdist] steps: - - name: Get source and binary wheels + - name: Get source wheels uses: actions/download-artifact@v2 with: + name: source-wheels + path: dist/ + - name: Get binary wheels + uses: actions/download-artifact@v2 + with: + name: binary-wheels path: dist/ - uses: pypa/gh-action-pypi-publish@release/v1