We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6464398 commit 063db55Copy full SHA for 063db55
1 file changed
.github/workflows/deploy.yaml
@@ -18,13 +18,13 @@ jobs:
18
- name: Install dependencies
19
run: |
20
python -m pip install --upgrade pip
21
- pip install setuptools wheel twine
+ pip install build twine
22
- name: Build and publish
23
env:
24
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
25
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
26
27
- python setup.py sdist bdist_wheel
+ python -m build
28
twine upload dist/*
29
- uses: actions/upload-artifact@v4
30
with:
0 commit comments