We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f430925 commit 2c2237aCopy full SHA for 2c2237a
.github/workflows/publish.yml
@@ -45,17 +45,17 @@ jobs:
45
- name: Upgrade pip, setuptools and wheel
46
run: |
47
python -m pip install --upgrade pip
48
- pip install setuptools wheel twine
+ pip install setuptools wheel build twine
49
- name: Build and check build
50
51
- python setup.py sdist bdist_wheel
+ python -m build
52
twine check dist/*
53
- name: Build and publish
54
if: ${{ success() }}
55
env:
56
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
57
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
58
59
60
61
- twine upload dist/*
+ twine upload dist/*
0 commit comments