From 9691c12ff975d9ff27b48ad446fa76d0face2634 Mon Sep 17 00:00:00 2001 From: Hannes Vogt Date: Fri, 13 Dec 2024 15:55:45 +0100 Subject: [PATCH] fix wd --- .github/workflows/pypi_deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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