This commit is contained in:
TingluoHuang
2021-10-14 16:49:54 -04:00
parent 0fac863568
commit cc0d0bed90
2 changed files with 2 additions and 0 deletions

View File

@@ -133,6 +133,7 @@ async function run(): Promise<void> {
execArgs.push(execInput.jobContainer.containerId)
execArgs.push(execInput.fileName)
core.debug(JSON.stringify(execInput.arguments))
const args = JSON.stringify(execInput.arguments).split(' ')
core.debug(JSON.stringify(args))

View File

@@ -1153,6 +1153,7 @@ function run() {
}
execArgs.push(execInput.jobContainer.containerId);
execArgs.push(execInput.fileName);
core.debug(JSON.stringify(execInput.arguments));
const args = JSON.stringify(execInput.arguments).split(' ');
core.debug(JSON.stringify(args));
execArgs.push(...args);