We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 960d0cb commit a473651Copy full SHA for a473651
1 file changed
.github/workflows/deploy.yml
@@ -34,9 +34,18 @@ jobs:
34
run: |
35
jupyter-book build book
36
37
+ # Debug build output
38
+ - name: Debug build output
39
+ run: |
40
+ ls -la book
41
+ ls -la book/_build || true
42
+ ls -la book/_build/html || true
43
+
44
# Deploy the book's HTML to gh-pages branch
45
- name: GitHub Pages action
46
uses: peaceiris/actions-gh-pages@v3.6.1
47
with:
48
github_token: ${{ secrets.GITHUB_TOKEN }}
49
+ publish_branch: gh-pages
50
publish_dir: book/_build/html
51
+ force_orphan: true
0 commit comments