We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 00c6cc9 + 2c85787 commit 543eb2aCopy full SHA for 543eb2a
noxfile.py
@@ -688,9 +688,11 @@ def make_release_commit(session):
688
f'CHANGELOG updated, changes ready to commit and push\n'
689
f' git remote add upstream {UPSTREAM_REPO_URL!r} 2>/dev/null || git remote get-url upstream\n'
690
f' git commit -m "release {version}"\n'
691
+ f' git push upstream {current_branch}\n'
692
+ f'Wait for a CI workflow to complete successfully, before triggering CD by pushing a tag.\n'
693
f' git tag v{version}\n'
694
f' git push upstream v{version}\n'
- f' git push upstream {current_branch}'
695
+ f'Wait for a CD workflow to complete successfully, indicates the release is done.'
696
)
697
698
0 commit comments