Files
HyPyUtils/deploy.ps1
T
Hykilpikonna 5e021df11a [+] MD5
2021-12-27 11:56:23 -05:00

14 lines
253 B
PowerShell

$ErrorActionPreference = "Stop"
$VERSION = $(python -c 'import hypy_utils; print(hypy_utils.__version__)')
Write-Output "$VERSION"
# Build
python setup.py sdist bdist_wheel
# Check
python -m twine check dist/*
# Upload
python -m twine upload dist/*