edge-tts/build_and_publish.sh

7 lines
136 B
Bash
Raw Normal View History

2021-12-03 22:47:53 +00:00
#!/bin/sh
set -eux
rm -rf build dist src/*.egg-info
python3 setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/* --verbose