Skip to content

Commit 95b02cf

Browse files
Changed build output directory to dist instead of wheelhouse
1 parent 03ff54c commit 95b02cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish-to-pypi.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ jobs:
3737
env:
3838
CIBW_PROJECT_REQUIRES_PYTHON: ${{ matrix.builds.python_requires }}
3939
CIBW_BUILD: "cp3*"
40-
run: python -m cibuildwheel --output-dir wheelhouse
40+
run: python -m cibuildwheel --output-dir dist
4141
- name: Publish to PyPI
4242
env:
4343
TWINE_USERNAME: __token__
4444
TWINE_PASSWORD: ${{secrets.PYPI_API_TOKEN}}
4545
run: |
4646
# python setup.py sdist bdist_wheel
4747
# twine upload dist/*
48-
twine upload --skip-existing wheelhouse/*
48+
twine upload --skip-existing dist/*
4949
pure-python-wheel-publish:
5050
runs-on: ubuntu-latest
5151
steps:
@@ -60,10 +60,10 @@ jobs:
6060
- name: Build pure python wheel
6161
env:
6262
KESSLER_SKIP_COMPILE: "1"
63-
run: pip wheel -w wheelhouse .
63+
run: pip wheel -w dist .
6464
- name: Publish
6565
env:
6666
TWINE_USERNAME: __token__
6767
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
6868
run: |
69-
twine upload --skip-existing wheelhouse/*
69+
twine upload --skip-existing dist/*

0 commit comments

Comments
 (0)