attempt to pipe output to parent

This commit is contained in:
Andrei Ioniță 2021-05-03 16:37:46 +03:00
parent ad4e7856ef
commit 0f55f88f3b
No known key found for this signature in database
GPG key ID: 0F69C262110EDA43

View file

@ -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);
} }