We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9eb24e commit afd79c2Copy full SHA for afd79c2
1 file changed
.github/workflows/python-publish.yml
@@ -19,12 +19,12 @@ jobs:
19
python-version: '3.x'
20
- name: Install dependencies
21
run: |
22
- python -m pip install --upgrade pip
+ python -m pip install --upgrade pip build
23
pip install setuptools wheel twine
24
- name: Build and publish
25
env:
26
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
27
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
28
29
- python setup.py sdist bdist_wheel
30
- twine upload dist/*
+ python -m build
+ python -m twine upload dist/*
0 commit comments