Skip to content

Show GH CLI command for starting build #221

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

Merged
merged 2 commits into from
Mar 17, 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
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 @@
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(

Check warning on line 876 in run_release.py

View check run for this annotation

Codecov / codecov/patch

run_release.py#L875-L876

Added lines #L875 - L876 were not covered by tests
" gh workflow run source-and-docs-release.yml --repo python/release-tools"
f" -f git_remote={origin_remote_github_owner}"
f" -f git_commit={commit_sha}"
f" -f cpython_release={db['release']}"
)
print()

Check warning on line 882 in run_release.py

View check run for this annotation

Codecov / codecov/patch

run_release.py#L882

Added line #L882 was not covered by tests

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