From 0f55f88f3b84b7b46e49b1e387e8a3b4d4c9f7b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ionit=CC=A6a=CC=86?= Date: Mon, 3 May 2021 16:37:46 +0300 Subject: [PATCH] attempt to pipe output to parent --- 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); }