We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e77fad commit 1fb064fCopy full SHA for 1fb064f
1 file changed
.github/workflows/main.yml
@@ -43,8 +43,13 @@ jobs:
43
- name: Create wheel
44
if: startsWith(github.ref, 'refs/tags')
45
run: |
46
- pip install wheel
47
- python setup.py sdist bdist_wheel
+ pip install build
+ python -m build
48
+ mkdir wheelhouse
49
+ cp dist/gatetools-* wheelhouse/
50
+ ls wheelhouse
51
+ rm -r dist
52
+ mv wheelhouse dist
53
- name: Publish distribution to PyPI
54
55
uses: pypa/gh-action-pypi-publish@master
0 commit comments