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 359f12e commit 2da03ceCopy full SHA for 2da03ce
.github/workflows/python-publish.yml
@@ -34,8 +34,10 @@ jobs:
34
pip install -r requirements.txt
35
- name: Build package
36
run: python setup.py bdist_wheel
37
- - name: Publish package
38
- uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
39
- with:
40
- user: __token__
41
- password: ${{ secrets.PYPI_API_TOKEN }}
+ - name: Build and publish
+ env:
+ TWINE_USERNAME: __token__
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
+ run: |
42
+ python setup.py sdist bdist_wheel
43
+ twine upload dist/*
0 commit comments