We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c25ae8e + 9c72682 commit c209618Copy full SHA for c209618
noxfile.py
@@ -262,9 +262,11 @@ def make_release_commit(session):
262
f'CHANGELOG updated, changes ready to commit and push\n'
263
f' git remote add upstream {UPSTREAM_REPO_URL!r} 2>/dev/null || git remote get-url upstream\n'
264
f' git commit -m "release {version}"\n'
265
+ f' git push upstream {current_branch}\n'
266
+ f'Wait for a CI workflow to complete successfully, before triggering CD by pushing a tag.\n'
267
f' git tag v{version}\n'
268
f' git push upstream v{version}\n'
- f' git push upstream {current_branch}'
269
+ f'Wait for a CD workflow to complete successfully, indicates the release is done.'
270
)
271
272
0 commit comments