From 3023646c84e733ea8b16cc7a6b97f796f660d5b5 Mon Sep 17 00:00:00 2001
From: Maciej Lech <maciej.lech@reef.pl>
Date: Tue, 31 Dec 2024 14:52:17 +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 f2071f9d..4b447007 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -252,9 +252,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.'
     )