improve release doc: how to upload stable
Some checks failed
Install and run tests / test (3.11) (push) Failing after 3s
Install and run tests / test (3.12) (push) Failing after 4s
Install and run tests / test (3.13) (push) Failing after 3s
Install and run tests / test (3.8) (push) Failing after 3s
Install and run tests / test (3.9) (push) Failing after 3s
Install and run tests / test (3.10) (push) Successful in 2m6s
Build documentation / build (push) Successful in 5m32s
Build documentation / deploy (push) Failing after 2m16s

This commit is contained in:
boyska 2025-03-01 14:49:00 +01:00
parent e0b70be291
commit 9bb4dda5de

View file

@ -33,7 +33,10 @@ pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/
## Release the stable
```sh
twine upload --repository pypi dist/*
(
set -eu
twine upload --repository pypi dist/*-${VERSION?}-*
git push --tags
)
```