diff --git a/dist/setup/index.js b/dist/setup/index.js index 1c8512e..d272c82 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -52347,6 +52347,7 @@ function findPyPyVersion(versionSpec, architecture) { core.exportVariable('pythonLocation', pythonLocation); core.addPath(pythonLocation); core.addPath(_binDir); + core.setOutput('python-version', 'pypy' + resolvedPyPyVersion.trim()); return { resolvedPyPyVersion, resolvedPythonVersion }; }); } diff --git a/src/find-pypy.ts b/src/find-pypy.ts index eb8dfac..75b6abb 100644 --- a/src/find-pypy.ts +++ b/src/find-pypy.ts @@ -52,6 +52,7 @@ export async function findPyPyVersion( core.exportVariable('pythonLocation', pythonLocation); core.addPath(pythonLocation); core.addPath(_binDir); + core.setOutput('python-version', 'pypy' + resolvedPyPyVersion.trim()); return {resolvedPyPyVersion, resolvedPythonVersion}; }