We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e0c840 commit b90c479Copy full SHA for b90c479
libdoc.sh
@@ -76,6 +76,11 @@ fi
76
# Run antora command
77
while test $# -gt 0; do
78
set -x
79
+ if [ "$CI" = "true" ]; then
80
+ ANTORA_LOG_LEVEL=all
81
+ export ANTORA_LOG_LEVEL
82
+ fi
83
+
84
if [ "$1" = "develop" ] || [ "$1" = "master" ]; then
85
npx antora --fetch \
86
--attribute page-boost-branch="$1" \
sitedoc.sh
@@ -81,5 +81,10 @@ if [ ! -d "node_modules" ] || [ "$(find package.json -prune -printf '%T@\n' | cu
fi
+if [ "$CI" = "true" ]; then
87
+fi
88
89
npx antora --fetch --attribute page-boost-branch="$1" --attribute page-commit-id="$commit_id" --stacktrace site.playbook.yml
90
0 commit comments