From 309290f1cf2c475c3426e7b3af3932655b275aa2 Mon Sep 17 00:00:00 2001 From: David Hiendl Date: Sat, 2 Dec 2023 20:38:26 +0100 Subject: [PATCH] assembled docker args --- dist/index.js | 4 ++-- src/action.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/index.js b/dist/index.js index 65d5152..03889eb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -62266,10 +62266,10 @@ function prepareDockerArgs(destinations) { return dockerArgs; } -function lib_executeDockerBuild(dockerArgs) { +function executeDockerBuild(dockerArgs) { const dockerArgsStr = dockerArgs.join(' '); - const proc = child_process.spawnSync('docker ' + dockerArgsStr, { + const proc = external_child_process_namespaceObject.spawnSync('docker ' + dockerArgsStr, { shell: true, stdio: 'inherit', cwd : getDockerContextDir() diff --git a/src/action.js b/src/action.js index 462c36d..f76aca9 100644 --- a/src/action.js +++ b/src/action.js @@ -3,7 +3,7 @@ import * as github from '@actions/github'; import * as action_information from 'information'; import { addCiRegistryAuth, - collectTags, + collectTags, executeDockerBuild, mergeArgRegistryAuthJson, prepareDestinations, prepareDockerArgs, processAdditionalRegistries,