attempt to pipe output to parent (#12)

This commit is contained in:
Andrei Ioniță 2021-05-03 19:40:53 +03:00 committed by GitHub
parent ad4e7856ef
commit 1f9078ddea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,5 +55,5 @@ function dep() {
dep = 'deployer.phar' dep = 'deployer.phar'
} }
execa.sync(dep, split(core.getInput('dep'))) execa(dep, split(core.getInput('dep'))).stdout.pipe(process.stdout);
} }