From 2c857875316c681eb601ce6a3f00ac60de301314 Mon Sep 17 00:00:00 2001 From: Maciej Lech Date: Tue, 31 Dec 2024 14:54:12 +0100 Subject: [PATCH] Add more informative release info --- noxfile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index ec523521..bea5ef76 100644 --- a/noxfile.py +++ b/noxfile.py @@ -662,9 +662,11 @@ def make_release_commit(session): f'CHANGELOG updated, changes ready to commit and push\n' f' git remote add upstream {UPSTREAM_REPO_URL!r} 2>/dev/null || git remote get-url upstream\n' f' git commit -m "release {version}"\n' + f' git push upstream {current_branch}\n' + f'Wait for a CI workflow to complete successfully, before triggering CD by pushing a tag.\n' f' git tag v{version}\n' f' git push upstream v{version}\n' - f' git push upstream {current_branch}' + f'Wait for a CD workflow to complete successfully, indicates the release is done.' )