github-workflow: download artifacts: specify directory path

This commit is contained in:
Mario Fink 2021-09-22 12:32:52 +02:00
parent 3253ad2918
commit b869686f6c

View File

@ -38,6 +38,7 @@ jobs:
uses: actions/download-artifact@v2 uses: actions/download-artifact@v2
with: with:
name: wheel-config name: wheel-config
path: python/
- name: Build wheels - name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse run: python -m cibuildwheel --output-dir wheelhouse
working-directory: python/ working-directory: python/
@ -56,6 +57,7 @@ jobs:
uses: actions/download-artifact@v2 uses: actions/download-artifact@v2
with: with:
name: wheel-config name: wheel-config
path: python/
- name: Build sdist - name: Build sdist
run: python setup.py sdist run: python setup.py sdist
working-directory: python/ working-directory: python/