github-workflow: flatten directory structure for download artifacts for PyPI upload

This commit is contained in:
Mario Fink 2021-09-22 13:45:15 +02:00
parent 86eb20a33b
commit ef5aaac254

View File

@ -79,9 +79,15 @@ jobs:
needs: [build_wheels, build_sdist] needs: [build_wheels, build_sdist]
steps: steps:
- name: Get source and binary wheels - name: Get source wheels
uses: actions/download-artifact@v2 uses: actions/download-artifact@v2
with: with:
name: source-wheels
path: dist/
- name: Get binary wheels
uses: actions/download-artifact@v2
with:
name: binary-wheels
path: dist/ path: dist/
- uses: pypa/gh-action-pypi-publish@release/v1 - uses: pypa/gh-action-pypi-publish@release/v1