Browse Source

[+] Deploy script

Azalea (on HyDEV-Daisy) 3 years ago
parent
commit
0a6a61a013
1 changed files with 17 additions and 0 deletions
  1. 17 0
      deploy.sh

+ 17 - 0
deploy.sh

@@ -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/*