mirror of
https://github.com/actions/setup-python.git
synced 2025-06-29 14:13:48 +00:00
Include python version in PyPy python-version output
This commit is contained in:
parent
a26af69be9
commit
777921ea78
2 changed files with 5 additions and 2 deletions
|
@ -96,7 +96,10 @@ export async function findPyPyVersion(
|
|||
core.addPath(pythonLocation);
|
||||
core.addPath(_binDir);
|
||||
}
|
||||
core.setOutput('python-version', 'pypy' + resolvedPyPyVersion);
|
||||
core.setOutput(
|
||||
'python-version',
|
||||
`pypy${resolvedPythonVersion}-${resolvedPyPyVersion}`
|
||||
);
|
||||
core.setOutput('python-path', pythonPath);
|
||||
|
||||
return {resolvedPyPyVersion, resolvedPythonVersion};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue