diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-01-14 21:50:35 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-01-14 21:50:35 +0000 |
| commit | 8d7cf336fb18a895610f31e124ced4b150bda21e (patch) | |
| tree | c01706050827c99a75495a51c54350429323ae99 | |
| parent | Add some disclaimer to readme (diff) | |
| download | SyncRNG-8d7cf336fb18a895610f31e124ced4b150bda21e.tar.gz SyncRNG-8d7cf336fb18a895610f31e124ced4b150bda21e.zip | |
set package path
| -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] |
