Fix log-format

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2021-10-10 19:24:29 +02:00
parent 17d1f37e8b
commit 44619516dc
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ jobs:
matrix:
version:
- latest
- 0.1.0-alpha.17
- 0.1.0-alpha.27
steps:
-
name: Checkout

2
dist/index.js generated vendored
View file

@ -217,7 +217,7 @@ function run() {
process.chdir(inputs.workdir);
}
stateHelper.setCleanup(inputs.cleanup);
yield exec.exec(`${daggerBin} ${inputs.args} --log-format pretty`);
yield exec.exec(`${daggerBin} ${inputs.args} --log-format plain`);
}
catch (error) {
core.setFailed(error.message);

View file

@ -36,7 +36,7 @@ async function run(): Promise<void> {
}
stateHelper.setCleanup(inputs.cleanup);
await exec.exec(`${daggerBin} ${inputs.args} --log-format pretty`);
await exec.exec(`${daggerBin} ${inputs.args} --log-format plain`);
} catch (error) {
core.setFailed(error.message);
}