File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,15 @@ for file in wheelhouse/audited/*.whl; do
1111 python3 -m twine upload --repository-url " $PYPI_SERVER " --username " $PYPI_USER " --password " $PYPI_PASSWORD " " $file "
1212done
1313
14- # Uploads zip source distribution
15- for file in wheelhouse/audited/* .zip; do
16- echo " Uploading $file "
17- python3 -m twine upload --repository-url " $PYPI_SERVER " --username " $PYPI_USER " --password " $PYPI_PASSWORD " " $file "
18- done
14+ # TODO (Morato) - add the source distribution upload back
15+ # # Uploads zip source distribution
16+ # for file in wheelhouse/audited/*.zip; do
17+ # echo "Uploading $file"
18+ # python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
19+ # done
1920
20- # Uploads tar.gz source distribution
21- for file in wheelhouse/audited/* .tar.gz; do
22- echo " Uploading $file "
23- python3 -m twine upload --repository-url " $PYPI_SERVER " --username " $PYPI_USER " --password " $PYPI_PASSWORD " " $file "
24- done
21+ # # Uploads tar.gz source distribution
22+ # for file in wheelhouse/audited/*.tar.gz; do
23+ # echo "Uploading $file"
24+ # python3 -m twine upload --repository-url "$PYPI_SERVER" --username "$PYPI_USER" --password "$PYPI_PASSWORD" "$file"
25+ # done
You can’t perform that action at this time.
0 commit comments