Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more informative release info #531

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
)


Expand Down
Loading