From 1f9078ddea78c3e7745152e12911340a09ba35dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Mon, 3 May 2021 19:40:53 +0300 Subject: [PATCH] attempt to pipe output to parent (#12) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2629224..c2dd0d1 100644 --- a/index.js +++ b/index.js @@ -55,5 +55,5 @@ function dep() { dep = 'deployer.phar' } - execa.sync(dep, split(core.getInput('dep'))) + execa(dep, split(core.getInput('dep'))).stdout.pipe(process.stdout); }