Files
edge-tts/build_and_publish.sh
2021-12-04 00:57:45 +02:00

7 lines
138 B
Bash
Executable File

#!/bin/sh
set -e
rm -rf build dist src/*.egg-info
python3 setup.py sdist bdist_wheel
twine upload dist/*
rm -rf build dist src/*.egg-info