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 4ecd561 commit 8f4ed0fCopy full SHA for 8f4ed0f
.github/workflows/test_and_release.yml
@@ -42,7 +42,7 @@ jobs:
42
if: startsWith(github.ref, 'refs/tags/v')
43
runs-on: ubuntu-latest
44
steps:
45
- - uses: actions/checkout@master
+ - uses: actions/checkout@v2
46
- name: Set up Python 3.7
47
uses: actions/setup-python@v2
48
with:
@@ -55,8 +55,9 @@ jobs:
55
run: |
56
python setup.py sdist bdist_wheel
57
- name: Publish distribution 📦 to PyPI
58
- with:
59
- password: ${{ secrets.PYPI_API_TOKEN }}
+ env:
+ TWINE_USERNAME: __token__
60
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
61
62
twine upload dist/*
63
- name: Upload release to github
0 commit comments