mirror of
https://github.com/actions/setup-node.git
synced 2024-11-10 04:18:24 +08:00
feat: add arch to resolveVersionFromManifest
This commit is contained in:
parent
f27ebaf08b
commit
6668516d2a
|
@ -38,7 +38,8 @@ export async function getNode(
|
|||
const resolvedVersion = await resolveVersionFromManifest(
|
||||
versionSpec,
|
||||
stable,
|
||||
auth
|
||||
auth,
|
||||
osArch
|
||||
);
|
||||
if (resolvedVersion) {
|
||||
versionSpec = resolvedVersion;
|
||||
|
@ -215,7 +216,8 @@ async function getInfoFromDist(
|
|||
async function resolveVersionFromManifest(
|
||||
versionSpec: string,
|
||||
stable: boolean,
|
||||
auth: string | undefined
|
||||
auth: string | undefined,
|
||||
osArch: string = translateArchToDistUrl(os.arch())
|
||||
): Promise<string | undefined> {
|
||||
try {
|
||||
const info = await getInfoFromManifest(versionSpec, stable, auth);
|
||||
|
|
Loading…
Reference in New Issue
Block a user