We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 049159f commit 0280bb6Copy full SHA for 0280bb6
.github/workflows/ci.yaml
@@ -45,11 +45,7 @@ jobs:
45
46
- name: "Build the docs"
47
working-directory: _build
48
- run: php build.php -vvv
49
-
50
- - name: Show log file
51
- if: ${{ always() }}
52
- run: cat _build/logs.txt || true
+ run: php build.php --disable-cache
53
54
doctor-rst:
55
name: Lint (DOCtor-RST)
_build/build.php
@@ -57,7 +57,11 @@
57
$io->error(sprintf("There were some errors while building the docs:\n\n%s\n", $result->getErrorTrace()));
58
$io->newLine();
59
$io->comment('Tip: you can add the -v, -vv or -vvv flags to this command to get debug information.');
60
+
61
+ return 1;
62
}
63
64
+ return 0;
65
})
66
->getApplication()
67
->setDefaultCommand('build-docs', true)
0 commit comments