File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,15 +37,15 @@ jobs:
37
37
env :
38
38
CIBW_PROJECT_REQUIRES_PYTHON : ${{ matrix.builds.python_requires }}
39
39
CIBW_BUILD : " cp3*"
40
- run : python -m cibuildwheel --output-dir wheelhouse
40
+ run : python -m cibuildwheel --output-dir dist
41
41
- name : Publish to PyPI
42
42
env :
43
43
TWINE_USERNAME : __token__
44
44
TWINE_PASSWORD : ${{secrets.PYPI_API_TOKEN}}
45
45
run : |
46
46
# python setup.py sdist bdist_wheel
47
47
# twine upload dist/*
48
- twine upload --skip-existing wheelhouse /*
48
+ twine upload --skip-existing dist /*
49
49
pure-python-wheel-publish :
50
50
runs-on : ubuntu-latest
51
51
steps :
@@ -60,10 +60,10 @@ jobs:
60
60
- name : Build pure python wheel
61
61
env :
62
62
KESSLER_SKIP_COMPILE : " 1"
63
- run : pip wheel -w wheelhouse .
63
+ run : pip wheel -w dist .
64
64
- name : Publish
65
65
env :
66
66
TWINE_USERNAME : __token__
67
67
TWINE_PASSWORD : ${{ secrets.PYPI_TOKEN }}
68
68
run : |
69
- twine upload --skip-existing wheelhouse /*
69
+ twine upload --skip-existing dist /*
You can’t perform that action at this time.
0 commit comments