added more chownFilesTo

pull/187/head
Skjalg 2022-06-24 10:28:16 +02:00
parent 6e8d771f76
commit a629f6ebac
3 changed files with 5 additions and 2 deletions

3
dist/index.js generated vendored
View File

@ -42,7 +42,7 @@ function run() {
try {
model_1.Action.checkCompatibility();
const { workspace, actionFolder } = model_1.Action;
const { editorVersion, customImage, projectPath, customParameters, testMode, coverageOptions, artifactsPath, useHostNetwork, sshAgent, gitPrivateToken, githubToken, checkName, } = model_1.Input.getFromUser();
const { editorVersion, customImage, projectPath, customParameters, testMode, coverageOptions, artifactsPath, useHostNetwork, sshAgent, gitPrivateToken, githubToken, checkName, chownFilesTo, } = model_1.Input.getFromUser();
const baseImage = new model_1.ImageTag({ editorVersion, customImage });
const runnerTemporaryPath = process.env.RUNNER_TEMP;
try {
@ -60,6 +60,7 @@ function run() {
gitPrivateToken,
githubToken,
runnerTemporaryPath,
chownFilesTo,
});
}
finally {

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

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