Skip to content

Commit 97ad614

Browse files
committed
Add debugging output to mdbook build process
1 parent 1ba7e57 commit 97ad614

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/mdbook.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,13 @@ jobs:
4141
id: pages
4242
uses: actions/configure-pages@v5
4343
- name: Build with mdBook
44-
run: mdbook build
44+
run: |
45+
ls -la ./src
46+
echo "Contents of SUMMARY.md:"
47+
cat ./src/SUMMARY.md
48+
mdbook build
49+
echo "Build complete, checking output:"
50+
ls -la ./book
4551
- name: Upload artifact
4652
uses: actions/upload-pages-artifact@v3
4753
with:

0 commit comments

Comments
 (0)