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 f82aef3 commit e872208Copy full SHA for e872208
.github/workflows/pypi-cd.yml
@@ -66,6 +66,7 @@ jobs:
66
- name: Release to pypi
67
shell: bash
68
env:
69
+ PYPI_USR: ${{ secrets.PYPI_USERNAME }}
70
PYPI_PWD: ${{ secrets.PYPI_PASSWORD }}
71
run: |
72
if [[ "$GITHUB_REPOSITORY" == "mars-project/mars" ]]; then
@@ -78,7 +79,7 @@ jobs:
78
79
echo " pypi" >> ~/.pypirc
80
echo "[pypi]" >> ~/.pypirc
81
echo "repository=$PYPI_REPO" >> ~/.pypirc
- echo "username=pyodps" >> ~/.pypirc
82
+ echo "username=$PYPI_USR" >> ~/.pypirc
83
echo "password=$PYPI_PWD" >> ~/.pypirc
84
python -m pip install twine
85
python -m twine upload -r pypi --skip-existing wheelhouse/*
0 commit comments