diff options
Diffstat (limited to '.github/workflows/python-deploy.yml')
| -rw-r--r-- | .github/workflows/python-deploy.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/python-deploy.yml b/.github/workflows/python-deploy.yml index 05e7223..f25ea3e 100644 --- a/.github/workflows/python-deploy.yml +++ b/.github/workflows/python-deploy.yml @@ -29,7 +29,7 @@ jobs: - name: Build wheels run: | - python -m cibuildwheel --output-dir wheelhouse + python -m cibuildwheel --output-dir ./wheelhouse ./python - uses: actions/upload-artifact@v2 with: @@ -47,11 +47,11 @@ jobs: python-version: '3.7' - name: Build sdist - run: python setup.py sdist + run: cd python && python setup.py sdist - uses: actions/upload-artifact@v2 with: - path: dist/*.tar.gz + path: python/dist/*.tar.gz upload_pypi: needs: [build_wheels, build_sdist] |
