Do not serialize custom job parameter
parent
cf95b5e11d
commit
98536a48a0
|
|
@ -3656,7 +3656,7 @@ class LocalDockerCloudRunner {
|
|||
fs_1.writeFileSync(`${workspace}/${entrypointFilePath}`, commands, {
|
||||
flag: 'w',
|
||||
});
|
||||
yield docker_1.default.run(image, Object.assign({ workspace, actionFolder }, this.buildParameters), false, `${workspace}/${entrypointFilePath}`, content, {
|
||||
yield docker_1.default.run(image, Object.assign({ workspace, actionFolder }, this.buildParameters), false, `/github/workspace/${entrypointFilePath}`, content, {
|
||||
listeners: {
|
||||
stdout: (data) => {
|
||||
myOutput += data.toString();
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -93,7 +93,7 @@ class LocalDockerCloudRunner implements ProviderInterface {
|
|||
image,
|
||||
{ workspace, actionFolder, ...this.buildParameters },
|
||||
false,
|
||||
`${workspace}/${entrypointFilePath}`,
|
||||
`/github/workspace/${entrypointFilePath}`,
|
||||
content,
|
||||
{
|
||||
listeners: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue