Skip to content
Merged
Changes from 1 commit
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
8 changes: 8 additions & 0 deletions run_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,14 @@ def start_build_of_source_and_docs(db: ReleaseShelf) -> None:
print(f"- Git commit to target for the release: {commit_sha}")
print(f"- CPython release number: {db['release']}")
print()
print("Or using the GitHub CLI run:")
print(
f" gh workflow run source-and-docs-release.yml --repo python/release-tools"
Comment thread
hugovk marked this conversation as resolved.
Outdated
f" -f git_remote={origin_remote_github_owner}"
f" -f git_commit={commit_sha}"
f" -f cpython_release={db['release']}"
)
print()

if not ask_question("Have you started the source and docs build?"):
raise ReleaseException("Source and docs build must be started")
Expand Down