File tree 3 files changed +5
-12
lines changed
3 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 20
20
with :
21
21
fetch-depth : 0
22
22
- 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
29
29
exit 0
30
30
fi
31
31
32
- export TWINE_USERNAME=${PYTHON_PYPI_USER:- }
33
- export TWINE_PASSWORD=${PYTHON_PYPI_PASSWORD:- }
34
-
35
32
# 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
38
35
python3 -m twine check dist/*
39
36
python3 -m twine upload dist/*
40
37
You can’t perform that action at this time.
0 commit comments