From 9bb4dda5def17eef28a2691ce63a12934f5e627a Mon Sep 17 00:00:00 2001 From: boyska Date: Sat, 1 Mar 2025 14:49:00 +0100 Subject: [PATCH] improve release doc: how to upload stable --- RELEASE.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 65a0009..01906c8 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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 +) ```