File tree 3 files changed +5
-7
lines changed
3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,6 @@ concurrency:
10
10
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11
11
cancel-in-progress : true
12
12
13
- env :
14
- PYTHON_PIPY_USER : ${{ secrets.PYTHON_PIPY_USER }}
15
- PYTHON_PIPY_PASSWORD : ${{ secrets.PYTHON_PIPY_PASSWORD }}
16
-
17
13
jobs :
18
14
release :
19
15
name : Release Python Port
24
20
with :
25
21
fetch-depth : 0
26
22
- name : Release the port
23
+ env :
24
+ PYTHON_PYPI_USER : ${{ secrets.PYTHON_PYPI_USER }}
25
+ PYTHON_PYPI_PASSWORD : ${{ secrets.PYTHON_PYPI_PASSWORD }}
27
26
run : |
28
27
cd source/ports/py_port
29
28
bash ./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 @@ -34,8 +34,7 @@ TWINE_PASSWORD=${PYTHON_PYPI_PASSWORD:-}
34
34
35
35
# Install dependencies and upload MetaCall package
36
36
python3 -m pip install --user --upgrade twine setuptools wheel
37
- # python3 setup.py sdist bdist_wheel
38
- python3 -m build
37
+ python3 setup.py sdist bdist_wheel
39
38
python3 -m twine check dist/*
40
39
python3 -m twine upload -u " ${TWINE_USERNAME} " -p " ${TWINE_PASSWORD} " dist/*
41
40
You can’t perform that action at this time.
0 commit comments