mirror of
https://github.com/actions/runner.git
synced 2025-12-16 06:57:25 +00:00
.
This commit is contained in:
@@ -132,7 +132,11 @@ async function run(): Promise<void> {
|
|||||||
}
|
}
|
||||||
execArgs.push(execInput.jobContainer.containerId)
|
execArgs.push(execInput.jobContainer.containerId)
|
||||||
execArgs.push(execInput.fileName)
|
execArgs.push(execInput.fileName)
|
||||||
execArgs.push(execInput.arguments)
|
|
||||||
|
const args = JSON.stringify(execInput.arguments).split(' ')
|
||||||
|
core.debug(JSON.stringify(args))
|
||||||
|
|
||||||
|
execArgs.push(...args)
|
||||||
|
|
||||||
core.debug(JSON.stringify(execArgs))
|
core.debug(JSON.stringify(execArgs))
|
||||||
|
|
||||||
|
|||||||
@@ -1153,7 +1153,9 @@ function run() {
|
|||||||
}
|
}
|
||||||
execArgs.push(execInput.jobContainer.containerId);
|
execArgs.push(execInput.jobContainer.containerId);
|
||||||
execArgs.push(execInput.fileName);
|
execArgs.push(execInput.fileName);
|
||||||
execArgs.push(execInput.arguments);
|
const args = JSON.stringify(execInput.arguments).split(' ');
|
||||||
|
core.debug(JSON.stringify(args));
|
||||||
|
execArgs.push(...args);
|
||||||
core.debug(JSON.stringify(execArgs));
|
core.debug(JSON.stringify(execArgs));
|
||||||
yield exec.exec('podman', execArgs);
|
yield exec.exec('podman', execArgs);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user