From 372d4a42f576c23180f1506e71d1cf205f85a70f Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Tue, 21 Sep 2021 15:31:54 +0200 Subject: [PATCH] github workflows: fix working directory --- .github/workflows/pypi-deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pypi-deploy.yml b/.github/workflows/pypi-deploy.yml index 346243e..a0dbd8c 100644 --- a/.github/workflows/pypi-deploy.yml +++ b/.github/workflows/pypi-deploy.yml @@ -17,8 +17,10 @@ jobs: - uses: actions/setup-python@v2 - name: Install cibuildwheel run: python -m pip install cibuildwheel==2.1.2 + working-directory: python/ - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse + working-directory: python/ build_sdist: name: Build source distribution @@ -27,6 +29,7 @@ jobs: - uses: actions/checkout@v2 - name: Build sdist run: python setup.py sdist + working-directory: python/ upload_pypi: name: Upload binary wheels to PyPI @@ -38,3 +41,4 @@ jobs: with: user: __token__ password: ${{ secrets.IMCTERMITE_GITHUB_WORKFLOW_PYPI_API_TOKEN }} + working-directory: python/