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

View File

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

View File

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