mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-06 06:55:48 -05:00
run build
This commit is contained in:
parent
45e544a71a
commit
9a03ebd9cc
1 changed files with 6 additions and 0 deletions
6
dist/setup/index.js
vendored
6
dist/setup/index.js
vendored
|
@ -62591,6 +62591,12 @@ function queryDistForMatch(versionSpec, arch = os.arch()) {
|
|||
}
|
||||
let versions = [];
|
||||
let nodeVersions = yield getVersionsFromDist();
|
||||
if (versionSpec === 'current' ||
|
||||
versionSpec === 'latest' ||
|
||||
versionSpec === 'node') {
|
||||
core.info(`getting latest node version...`);
|
||||
return nodeVersions[0].version;
|
||||
}
|
||||
nodeVersions.forEach((nodeVersion) => {
|
||||
// ensure this version supports your os and platform
|
||||
if (nodeVersion.files.indexOf(dataFileName) >= 0) {
|
||||
|
|
Loading…
Reference in a new issue