-
Hi, Here's the github page, that serves the html but not the https://bayesianmodelingandcomputationinpython.github.io/BookCode_Edition1/welcome.html Here's the config.yml Here's the gh-pages branch I read through this issue ticket extensively and tried all the suggestions but couldn't figure out what's going on |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The issue was the by default github pages ignores directories with an underscore. To get around this you have to add a In our case because we deploy the Hope this helps anyone else with the same issue! |
Beta Was this translation helpful? Give feedback.
The issue was the by default github pages ignores directories with an underscore. To get around this you have to add a
.nojekyll
to your deploymentIn our case because we deploy the
_build/html
directory we needed to add a .nojekyll there. Here's what it looks like in github actions.Hope this helps anyone else with the same issue!
https://github.com/BayesianModelingandComputationInPython/BookCode_Edition1/blob/main/.github/workflows/build-html-and-deploy.yml#L37