mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 06:22:03 -08:00
12 lines
231 B
Bash
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
|