Skip to content

Commit 0f5648e

Browse files
committed
Add debug information to workflow
1 parent 2baef18 commit 0f5648e

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/render-book.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,25 @@ jobs:
1818
with:
1919
version: latest
2020

21+
- name: Debug Information
22+
run: |
23+
echo "Current directory: $(pwd)"
24+
echo "Directory contents:"
25+
ls -la
26+
echo "Quarto version:"
27+
quarto --version
28+
echo "Checking _quarto.yml:"
29+
cat _quarto.yml
30+
2131
- name: Render
2232
uses: quarto-dev/quarto-actions/render@v2
2333
with:
24-
args: --to html
34+
args: --to html --debug
35+
36+
- name: Check Output
37+
run: |
38+
echo "Checking docs directory:"
39+
ls -la docs/
2540
2641
- name: Deploy to GitHub Pages
2742
uses: JamesIves/github-pages-deploy-action@v4

0 commit comments

Comments
 (0)