File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ jobs:
114114 run : echo '::set-env name=BUILD_COMMIT_HASH::${{github.sha}}'
115115 - name : Building a source distribution
116116 run : |
117- /opt/python/cp38-cp38/bin/python3.8 setup.py sdist --formats=bztar ,zip
117+ /opt/python/cp38-cp38/bin/python3.8 setup.py sdist --formats=gztar ,zip
118118 mv dist/* wheelhouse/audited/
119119 - name : Building wheels
120120 run : for PYBIN in /opt/python/cp3*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/; done
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ for file in wheelhouse/audited/*.zip; do
1313 python3 -m twine upload --repository-url " $PYPI_SERVER " --username " $PYPI_USER " --password " $PYPI_PASSWORD " " $file "
1414done
1515
16- # Uploads tar.bz2 source distribution
17- for file in wheelhouse/audited/* .tar.bz2 ; do
16+ # Uploads tar.gz source distribution
17+ for file in wheelhouse/audited/* .tar.gz ; do
1818 echo " Uploading $file "
1919 python3 -m twine upload --repository-url " $PYPI_SERVER " --username " $PYPI_USER " --password " $PYPI_PASSWORD " " $file "
2020done
You can’t perform that action at this time.
0 commit comments