File tree Expand file tree Collapse file tree 3 files changed +5
-12
lines changed Expand file tree Collapse file tree 3 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 2020 with :
2121 fetch-depth : 0
2222 - name : Release the port
23- env :
24- PYTHON_PYPI_USER : ${{ secrets.PYTHON_PYPI_USER }}
25- PYTHON_PYPI_PASSWORD : ${{ secrets.PYTHON_PYPI_PASSWORD }}
26- run : |
27- cd source/ports/py_port
28- bash ./upload.sh
23+ working-directory : source/ports/py_port
24+ run : ./upload.sh
Original file line number Diff line number Diff line change 1- 0.6.0
1+ 0.5.1
Original file line number Diff line number Diff line change @@ -29,12 +29,9 @@ if [[ "$PYPI_VERSION" == "$PORT_VERSION" ]]; then
2929 exit 0
3030fi
3131
32- export TWINE_USERNAME=${PYTHON_PYPI_USER:- }
33- export TWINE_PASSWORD=${PYTHON_PYPI_PASSWORD:- }
34-
3532# Install dependencies and upload MetaCall package
36- python3 -m pip install --user --upgrade twine setuptools wheel
37- python3 setup.py sdist bdist_wheel
33+ python3 -m pip install --user --upgrade twine setuptools wheel build
34+ python3 -m build
3835python3 -m twine check dist/*
3936python3 -m twine upload dist/*
4037
You can’t perform that action at this time.
0 commit comments