We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c53af44 commit 5a43a0eCopy full SHA for 5a43a0e
1 file changed
.github/workflows/publish.yml
@@ -21,15 +21,15 @@ jobs:
21
run: sudo pip install -r requirements-publish.txt
22
23
- name: init .pypirc
24
- env:
25
- PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
26
- run: |
27
- echo -e "[pypi]" >> ~/.pypirc
28
- echo -e "username = __token__" >> ~/.pypirc
29
- echo -e "password = $PYPI_TOKEN" >> ~/.pypirc
+ env:
+ PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
+ run: |
+ echo -e "[pypi]" >> ~/.pypirc
+ echo -e "username = __token__" >> ~/.pypirc
+ echo -e "password = $PYPI_TOKEN" >> ~/.pypirc
30
31
- name: create packages
32
- run: python3 setup.py sdist bdist_wheel
+ run: python3 setup.py sdist bdist_wheel
33
34
- name: upload to pypi
35
- run: python3 -m twine upload dist/* --skip-existing
+ run: python3 -m twine upload dist/* --skip-existing
0 commit comments