[chore]: run earthly +compile

This commit is contained in:
Ryan LaForge 2022-09-20 14:11:11 -06:00
parent 00f88e41e2
commit 7bc67ec983
2 changed files with 3 additions and 2 deletions

3
dist/setup/index.js vendored
View File

@ -68324,7 +68324,8 @@ function run() {
throw new Error(`Unsupported operating system - ${pkgName} is only released for ${Object.keys(nodePlatformToReleasePlatform).join(", ")}`);
}
const releasePlatform = nodePlatformToReleasePlatform[runnerPlatform];
const releaseArch = nodeArchToReleaseArch[os.arch()];
const osArch = os.arch();
const releaseArch = nodeArchToReleaseArch[os.arch()] || osArch;
const range = core.getInput("version");
core.info(`Configured range: ${range}`);
const version = yield (0, get_version_1.getVersionObject)(range);

File diff suppressed because one or more lines are too long