[+] deploy.sh

This commit is contained in:
Hykilpikonna
2022-07-07 18:27:08 -04:00
parent 282c014a7f
commit 78e218ee2a
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
# Stop on error
set -e
# Remove old build
rm -rf dist/*
rm -rf build/*
# Build
python setup.py sdist bdist_wheel
# Check built files
twine check dist/*
# Upload
twine upload dist/*