Skip to content

Commit 55c7b65

Browse files
committed
Add debugging and fix Doxyfile path in GitHub Actions
1 parent d8107a6 commit 55c7b65

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/deploy-docs.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,14 @@ jobs:
1919

2020
- name: Generate Documentation
2121
run: |
22+
echo "Current directory: $(pwd)"
23+
echo "Contents of lab2 directory:"
24+
ls -la lab2/
25+
echo "Checking if Doxyfile exists:"
26+
ls -la lab2/Doxyfile
2227
cd lab2
23-
doxygen Doxyfile
28+
echo "After cd lab2, current directory: $(pwd)"
29+
doxygen ./Doxyfile
2430
2531
- name: Deploy to GitHub Pages
2632
uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)