Force log-format pretty

This commit is contained in:
CrazyMax 2021-05-30 07:59:26 +02:00
parent 166ec1a4fd
commit efd9466aff
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
2 changed files with 2 additions and 2 deletions

2
dist/index.js generated vendored
View file

@ -214,7 +214,7 @@ function run() {
core.info(`Using ${inputs.workdir} as working directory`);
process.chdir(inputs.workdir);
}
yield exec.exec(`${daggerBin} ${inputs.args}`);
yield exec.exec(`${daggerBin} ${inputs.args} --log-format pretty`);
}
catch (error) {
core.setFailed(error.message);

View file

@ -34,7 +34,7 @@ async function run(): Promise<void> {
process.chdir(inputs.workdir);
}
await exec.exec(`${daggerBin} ${inputs.args}`);
await exec.exec(`${daggerBin} ${inputs.args} --log-format pretty`);
} catch (error) {
core.setFailed(error.message);
}