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.
2 parents 446eda2 + f0b6416 commit 415f2e1Copy full SHA for 415f2e1
.github/workflows/python-publish.yml
@@ -19,11 +19,8 @@ jobs:
19
- name: Install dependencies
20
run: |
21
python -m pip install --upgrade pip
22
- pip install build
+ pip install build twine wheel
23
- name: Build package
24
run: python -m build
25
- name: Publish package
26
- uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
27
- with:
28
- user: __token__
29
- password: ${{ secrets.PYPI_API_TOKEN }}
+ run: twine upload -u __token__ -p ${{ secrets.PYPI_API_TOKEN }} dist/*
0 commit comments