File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 3434 - name : upload to pypi if tagged
3535 if : startsWith(github.ref, 'refs/tags')
3636 env :
37- TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
38- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
37+ TWINE_USERNAME : __token__
38+ TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
3939 run : |
4040 twine upload dist/mecab*.tar.gz
4141 build_manylinux :
8686 - name : Publish to PyPI if tagged
8787 if : startsWith(github.ref, 'refs/tags')
8888 env :
89- TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
90- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
89+ TWINE_USERNAME : __token__
90+ TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
9191 run : |
9292 python --version
9393 pip --version
Original file line number Diff line number Diff line change 7676 - name : Publish to PyPI if tagged
7777 if : startsWith(github.ref, 'refs/tags')
7878 env :
79- TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
80- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
79+ TWINE_USERNAME : __token__
80+ TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
8181 run : |
8282 pip install twine
8383 twine upload dist/mecab*whl
Original file line number Diff line number Diff line change 6767 - name : Publish to PyPI if tagged
6868 if : startsWith(github.ref, 'refs/tags')
6969 env :
70- TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
71- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
70+ TWINE_USERNAME : __token__
71+ TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
7272 run : |
7373 python --version
7474 pip --version
You can’t perform that action at this time.
0 commit comments