mirror of
https://github.com/actions/setup-node.git
synced 2026-02-14 17:54:50 +08:00
Support AGENT_TOOLSDIRECTORY as in setup-python action
This commit is contained in:
@@ -33,6 +33,14 @@ export async function run() {
|
||||
arch = os.arch();
|
||||
}
|
||||
|
||||
if (process.env.AGENT_TOOLSDIRECTORY?.trim()) {
|
||||
process.env['RUNNER_TOOL_CACHE'] = process.env['AGENT_TOOLSDIRECTORY'];
|
||||
}
|
||||
|
||||
core.debug(
|
||||
`Node is expected to be installed into ${process.env['RUNNER_TOOL_CACHE']}`
|
||||
);
|
||||
|
||||
if (version) {
|
||||
const token = core.getInput('token');
|
||||
const auth = !token ? undefined : `token ${token}`;
|
||||
|
||||
Reference in New Issue
Block a user