mirror of
https://github.com/dagger/dagger-for-github.git
synced 2026-01-01 13:10:18 +11:00
Fix log-format
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
17d1f37e8b
commit
44619516dc
3 changed files with 3 additions and 3 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -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
2
dist/index.js
generated
vendored
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue