[+] Deploy script

This commit is contained in:
Azalea (on HyDEV-Daisy)
2022-04-14 20:46:29 -04:00
parent 2cc78c1af9
commit a47edeb515
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/*