diff --git a/.github/workflows/pypi_deploy.yml b/.github/workflows/pypi_deploy.yml index acf2f2ca..ab4178cd 100644 --- a/.github/workflows/pypi_deploy.yml +++ b/.github/workflows/pypi_deploy.yml @@ -23,15 +23,14 @@ jobs: run: | python -m pip install build --user - name: Build a wheel and a source tarball - working-directory: ./bindings/python run: | + cd bindings/python python -m build --sdist --outdir dist/ - name: Upload artifact - working-directory: ./bindings/python uses: actions/upload-artifact@v3 with: name: ghex-dist - path: ./dist/** + path: ./bindings/python/dist/** # publish-pypi: # name: Publish Python distribution to pypi.org # runs-on: ubuntu-latest