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 c837e4d commit 4a6cf47Copy full SHA for 4a6cf47
run_release.py
@@ -872,6 +872,14 @@ def start_build_of_source_and_docs(db: ReleaseShelf) -> None:
872
print(f"- Git commit to target for the release: {commit_sha}")
873
print(f"- CPython release number: {db['release']}")
874
print()
875
+ print("Or using the GitHub CLI run:")
876
+ print(
877
+ " gh workflow run source-and-docs-release.yml --repo python/release-tools"
878
+ f" -f git_remote={origin_remote_github_owner}"
879
+ f" -f git_commit={commit_sha}"
880
+ f" -f cpython_release={db['release']}"
881
+ )
882
+ print()
883
884
if not ask_question("Have you started the source and docs build?"):
885
raise ReleaseException("Source and docs build must be started")
0 commit comments