Even though Github Pages is configured to build off the master branch and serve index.html
from the /docs
directory, it's still serving the README.md
file from the root directory. Here are my configurations, in case I'm somehow mistaken:
And here's the repo: https://github.com/mattyoungberg/RGBTrainer
Here's what it currently serves: https://mattyoungberg.github.io/RGBTrainer (The README.md
file in \(root)
, not \docs
)
Here's what I'd expect it to serve: https://mattyoungberg.github.io/RGBTrainer/docs/
This setup worked just fine two days ago on a feature branch. I merged it to master, changed the branch Github Pages pointed at to master, but now it's not behaving as I'd expect.
Can anyone tell me why this wouldn't work? I've looked at all the other StackOverflow questions I can find, but they all seem to have a different angle to the question which renders them unhelpful in my situation.
Any help is greatly appreciated.