mirror of https://github.com/coqui-ai/TTS.git
Add test pypi upload
This commit is contained in:
parent
0d9f7f21a3
commit
d63f1bfbfb
|
@ -80,3 +80,17 @@ jobs:
|
||||||
path: "dist/"
|
path: "dist/"
|
||||||
- run: |
|
- run: |
|
||||||
ls -lh dist/
|
ls -lh dist/
|
||||||
|
- name: Setup PyPI config
|
||||||
|
run: |
|
||||||
|
cat << EOF > ~/.pypirc
|
||||||
|
[pypi]
|
||||||
|
username=__token__
|
||||||
|
password=${{ secrets.TEST_PYPI_TOKEN }}
|
||||||
|
EOF
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.8
|
||||||
|
- run: |
|
||||||
|
python -m pip install twine
|
||||||
|
- run: |
|
||||||
|
twine upload --repository testpypi dist/*
|
||||||
|
|
Loading…
Reference in New Issue