Currently, .github/workflows/build-release.yml takes a tag number:
|
cpython_release: |
|
type: string |
|
description: "CPython release number (ie '3.11.5', note without the 'v' prefix)" |
Which can be used as the input when triggering a run:
https://github.com/python/release-tools/actions/workflows/build-release.yml
It would be useful if we could also give a branch name, so for example we can trigger a run against upstream main or 3.14, so we can verify the latest state will build.
This will also help with PRs like #284 where we specify which arguments to run against the Android test runner, and the test runner is in the upstream repo.
We'll need to take care of v prefix that is currently prepended in some places.