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