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 dc4a1df commit 66c0be6Copy full SHA for 66c0be6
.github/workflows/python-publish.yml
@@ -42,8 +42,7 @@ jobs:
42
- name: Run examples
43
run: pip3 install . && find examples -maxdepth 2 -name "*.py" -exec python3 {} \;
44
45
- - name: Publish to PyPI
46
- uses: pypa/gh-action-pypi-publish@release/v1
47
- with:
48
- password: ${{ secrets.PYPI_AHEAD }}
49
- repository-url: https://upload.pypi.org/legacy/
+ - name: Publish to PyPI
+ run: |
+ python3 -m pip install --upgrade twine
+ twine upload --repository-url https://upload.pypi.org/legacy/ -u __token__ -p ${{ secrets.PYPI_AHEAD }} dist/*
0 commit comments