Do not serialize custom job parameter

pull/461/head
Frostebite 2022-09-28 00:01:09 +01:00
parent 6170f2320a
commit 5445231c42
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -3641,7 +3641,7 @@ class LocalDockerCloudRunner {
fs_1.writeFileSync(`${workspace}/${entrypointFilePath}`, commands, {
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: {
stdout: (data) => {
myOutput += data.toString();

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -95,7 +95,7 @@ class LocalDockerCloudRunner implements ProviderInterface {
image,
{ workspace, actionFolder, ...this.buildParameters },
false,
`'chmod +x /github/workspace/${entrypointFilePath} && /github/workspace/${entrypointFilePath}'`,
`"chmod +x /github/workspace/${entrypointFilePath} && /github/workspace/${entrypointFilePath}"`,
content,
{
listeners: {