Skip to content

Commit acf7c10

Browse files
committed
ci: debug level for antora generation and copy
1 parent 2f0dd8c commit acf7c10

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -648,10 +648,11 @@ jobs:
648648
# master, develop, and tags.
649649
GH_TOKEN="${{ secrets.GITHUB_TOKEN }}"
650650
export GH_TOKEN
651+
set -x
651652
npm ci
652-
npx antora --clean --fetch antora-playbook.yml
653+
npx antora --clean --fetch antora-playbook.yml --log-level=debug
653654
mkdir -p ../build/website/docs
654-
cp -r build/site/* ../build/website/docs
655+
cp -vr build/site/* ../build/website/docs
655656
656657
- name: Upload Website as Artifact
657658
uses: actions/upload-artifact@v4
@@ -667,12 +668,12 @@ jobs:
667668
# documentation content and visualize it
668669
# before a workflow that pushes to the
669670
# website is triggered.
670-
set -x
671671
GH_TOKEN="${{ secrets.GITHUB_TOKEN }}"
672672
export GH_TOKEN
673-
npx antora antora-playbook.yml --attribute branchesarray=HEAD --stacktrace
673+
set -x
674+
npx antora antora-playbook.yml --attribute branchesarray=HEAD --stacktrace --log-level=debug
674675
mkdir -p ../build/docs-local
675-
cp -r build/site/* ../build/docs-local
676+
cp -vr build/site/* ../build/docs-local
676677
677678
- name: Generate Demos
678679
run: |

0 commit comments

Comments
 (0)