diff --git a/action.yml b/action.yml index cbb4c7e..a7c10e2 100644 --- a/action.yml +++ b/action.yml @@ -6,7 +6,6 @@ branding: inputs: version: description: Version of PNPM to install - required: true dest: description: Where to store PNPM files required: false diff --git a/dist/index.js b/dist/index.js index 440697a..bc0966b 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 2a31920..c3f5761 100644 --- a/src/install-pnpm/run.ts +++ b/src/install-pnpm/run.ts @@ -8,13 +8,15 @@ import { Inputs } from '../inputs' export async function runSelfInstaller(inputs: Inputs): Promise { const { version, dest } = inputs - const pkgJson = path.join(dest, 'package.json') - const target = await readTarget(pkgJson, version) + // prepare self install await remove(dest) + const pkgJson = path.join(dest, 'package.json') await ensureFile(pkgJson) await writeFile(pkgJson, JSON.stringify({ private: true })) + // prepare target pnpm + const target = await readTarget(version) const cp = spawn(execPath, ['-', 'install', target, '--no-lockfile'], { cwd: dest, stdio: ['pipe', 'inherit', 'inherit'], @@ -36,10 +38,18 @@ export async function runSelfInstaller(inputs: Inputs): Promise { return exitCode } -async function readTarget(packageJsonPath: string, version?: string | undefined) { +async function readTarget(version?: string | undefined) { if (version) return `pnpm@${version}` - const { packageManager } = JSON.parse(await readFile(packageJsonPath, 'utf8')) + const { GITHUB_WORKSPACE } = process.env + if (!GITHUB_WORKSPACE) { + throw new Error(`No workspace is found. +If you're intended to let pnpm/action-setup read preferred pnpm version from the "packageManager" field in the package.json file, +please run the actions/checkout before pnpm/action-setup. +Otherwise, please specify the pnpm version in the action configuration.`) + } + + const { packageManager } = JSON.parse(await readFile(path.join(GITHUB_WORKSPACE, 'package.json'), 'utf8')) if (typeof packageManager !== 'string') { throw new Error(`No pnpm version is specified. Please specify it by one of the following ways: