mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
fix: allow to pick which version to use by only removing platform_version for this version
This commit is contained in:
parent
427878c2d3
commit
05b0430d2d
@ -27,8 +27,8 @@ inputs:
|
||||
description: "When 'true', a version range passed to 'python-version' input will match prerelease versions if no GA versions are found. Only 'x.y' version range is supported for CPython."
|
||||
default: false
|
||||
ignore-platform-version:
|
||||
description: "Ignore the platform version to allow usage on Debian"
|
||||
default: false
|
||||
description: "Ignore the specific platform version to allow usage on Debian"
|
||||
default: ""
|
||||
required: false
|
||||
outputs:
|
||||
python-version:
|
||||
|
3
dist/setup/index.js
vendored
3
dist/setup/index.js
vendored
@ -71732,7 +71732,10 @@ function getManifest() {
|
||||
// Display each tool
|
||||
manifest.forEach(tool => {
|
||||
tool.files.forEach(f => {
|
||||
if (f.platform_version === core.getInput('ignore-platform-version') ||
|
||||
'all' === core.getInput('ignore-platform-version')) {
|
||||
f.platform_version = undefined;
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -40,7 +40,12 @@ export async function getManifest(): Promise<tc.IToolRelease[]> {
|
||||
// Display each tool
|
||||
manifest.forEach(tool => {
|
||||
tool.files.forEach(f => {
|
||||
if (
|
||||
f.platform_version === core.getInput('ignore-platform-version') ||
|
||||
'all' === core.getInput('ignore-platform-version')
|
||||
) {
|
||||
f.platform_version = undefined;
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user