Forgot to build dist

pull/196/head
Simen Sandvaer 2022-10-20 16:57:59 +02:00
parent a7293ea76a
commit d3bff596c3
5 changed files with 927 additions and 921 deletions

1836
dist/index.js generated vendored

File diff suppressed because it is too large Load Diff

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,7 @@ async function run() {
githubToken, githubToken,
checkName, checkName,
chownFilesTo, chownFilesTo,
unityLicensingServer unityLicensingServer,
} = Input.getFromUser(); } = Input.getFromUser();
const baseImage = new ImageTag({ editorVersion, customImage }); const baseImage = new ImageTag({ editorVersion, customImage });
const runnerTemporaryPath = process.env.RUNNER_TEMP; const runnerTemporaryPath = process.env.RUNNER_TEMP;
@ -41,7 +41,7 @@ async function run() {
githubToken, githubToken,
runnerTemporaryPath, runnerTemporaryPath,
chownFilesTo, chownFilesTo,
unityLicensingServer unityLicensingServer,
}); });
} finally { } finally {
await Output.setArtifactsPath(artifactsPath); await Output.setArtifactsPath(artifactsPath);

View File

@ -34,7 +34,7 @@ const Docker = {
githubToken, githubToken,
runnerTemporaryPath, runnerTemporaryPath,
chownFilesTo, chownFilesTo,
unityLicensingServer unityLicensingServer,
} = parameters; } = parameters;
const githubHome = path.join(runnerTemporaryPath, '_github_home'); const githubHome = path.join(runnerTemporaryPath, '_github_home');
@ -111,7 +111,7 @@ const Docker = {
githubToken, githubToken,
runnerTemporaryPath, runnerTemporaryPath,
chownFilesTo, chownFilesTo,
unityLicensingServer unityLicensingServer,
} = parameters; } = parameters;
const githubHome = path.join(runnerTemporaryPath, '_github_home'); const githubHome = path.join(runnerTemporaryPath, '_github_home');

View File

@ -68,7 +68,7 @@ const Input = {
githubToken, githubToken,
checkName, checkName,
chownFilesTo, chownFilesTo,
unityLicensingServer unityLicensingServer,
}; };
}, },
}; };