diff --git a/dist/index.js b/dist/index.js index c112f8e..2e2208f 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/src/install-pnpm/run.ts b/src/install-pnpm/run.ts index 43582d2..958aaf2 100644 --- a/src/install-pnpm/run.ts +++ b/src/install-pnpm/run.ts @@ -30,10 +30,7 @@ export async function runSelfInstaller(inputs: Inputs): Promise { if (exitCode === 0) { const pnpmHome = join(dest, 'node_modules/.bin') core.addPath(pnpmHome) - // This environment variable will be available in future steps as PNPM_HOME - // It is written as PNPM_HOME_PATH due to a convention in GitHub actions: - // > Any new environment variables you set that point to a location on the filesystem should have a _PATH suffix. - core.exportVariable('PNPM_HOME_PATH', pnpmHome) + core.exportVariable('PNPM_HOME', pnpmHome) } return exitCode }