Merge all scripts for publishing into build_and_publish.sh

This commit is contained in:
rany2 2023-01-05 07:56:42 +02:00
parent 526c8ad9a2
commit 8a05a4f998
4 changed files with 5 additions and 20 deletions

View File

@ -1,3 +0,0 @@
#!/bin/sh
set -x
exec python3 setup.py sdist bdist_wheel

View File

@ -1,12 +1,6 @@
#!/bin/sh
set -ex
./clean.sh
./build.sh
./publish.sh
./clean.sh
exit 0
set -eux
rm -rf build dist src/*.egg-info
python3 setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/* --verbose

View File

@ -1,3 +0,0 @@
#!/bin/sh
set -x
exec rm -rf build dist src/*.egg-info

View File

@ -1,3 +0,0 @@
#!/bin/sh
set -x
exec twine upload dist/*