We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec12aae commit 9c72682Copy full SHA for 9c72682
noxfile.py
@@ -252,9 +252,11 @@ def make_release_commit(session):
252
f'CHANGELOG updated, changes ready to commit and push\n'
253
f' git remote add upstream {UPSTREAM_REPO_URL!r} 2>/dev/null || git remote get-url upstream\n'
254
f' git commit -m "release {version}"\n'
255
+ f' git push upstream {current_branch}\n'
256
+ f'Wait for a CI workflow to complete successfully, before triggering CD by pushing a tag.\n'
257
f' git tag v{version}\n'
258
f' git push upstream v{version}\n'
- f' git push upstream {current_branch}'
259
+ f'Wait for a CD workflow to complete successfully, indicates the release is done.'
260
)
261
262
0 commit comments