From e6378df420e07e90b6f6fd9cc9707ea5a9955888 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Tue, 8 Feb 2022 00:21:53 +0200 Subject: [PATCH] PNPM_HOME_PATH=>PNPM_HOME --- dist/index.js | Bin 569457 -> 569452 bytes src/install-pnpm/run.ts | 5 +---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index c112f8ee83315df45d96db1d9e0844b627a9a02f..2e2208fd5b20153362ff84616cea3374bc76e40a 100644 GIT binary patch delta 46 tcmezPKDK+FQftU$~L#O&KO1UNhw003dT47C6N delta 52 zcmaF!KrF9%m&2l+m!`4JQn}}xql8B 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 }