diff --git a/libdoc.sh b/libdoc.sh index f44f68a..ab894a5 100755 --- a/libdoc.sh +++ b/libdoc.sh @@ -76,6 +76,11 @@ fi # Run antora command while test $# -gt 0; do set -x + if [ "$CI" = "true" ]; then + ANTORA_LOG_LEVEL=all + export ANTORA_LOG_LEVEL + fi + if [ "$1" = "develop" ] || [ "$1" = "master" ]; then npx antora --fetch \ --attribute page-boost-branch="$1" \ diff --git a/sitedoc.sh b/sitedoc.sh index 00d520f..904451c 100755 --- a/sitedoc.sh +++ b/sitedoc.sh @@ -81,5 +81,10 @@ if [ ! -d "node_modules" ] || [ "$(find package.json -prune -printf '%T@\n' | cu fi set -x +if [ "$CI" = "true" ]; then + ANTORA_LOG_LEVEL=all + export ANTORA_LOG_LEVEL +fi + npx antora --fetch --attribute page-boost-branch="$1" --attribute page-commit-id="$commit_id" --stacktrace site.playbook.yml