From 8d7cf336fb18a895610f31e124ced4b150bda21e Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 14 Jan 2021 21:50:35 +0000 Subject: set package path --- .github/workflows/python-deploy.yml | 6 +++--- 1 file 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] -- cgit v1.2.3