omegafox/jsonvv/publish.sh
2024-11-27 18:09:55 -06:00

12 lines
231 B
Bash

rm -rf ./dist
vermin . --eval-annotations --target=3.8 --violations jsonvv/ || exit 1
python -m build
twine check dist/*
read -p "Confirm publish? (y/n) " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
twine upload dist/*
fi