Skip to content

Commit

Permalink
add double quotes to twine credentials in the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
balta2ar committed Feb 25, 2020
1 parent 09861c6 commit 920fe2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
pip install setuptools wheel twine pandoc
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TWINE_USERNAME: "${{ secrets.PYPI_USERNAME }}"
TWINE_PASSWORD: "${{ secrets.PYPI_PASSWORD }}"
run: |
python setup.py sdist bdist_wheel --universal
twine upload --repository-url https://upload.pypi.org/legacy/ --verbose dist/*

0 comments on commit 920fe2e

Please sign in to comment.