I have a Jekyll blog that I am able to build locally with bundle exec jekyll serve
but am unable to build on Github Pages. I forked a theme, followed the setup instructions but cannot figure out what the issue is.
The error message does not provide any detailed information:
The page build failed for the `master` branch with the following error:
Page build failed. For more information, see https://help.github.com/articles/troubleshooting-github-pages-builds/
.
For information on troubleshooting Jekyll see:
https://help.github.com/articles/troubleshooting-jekyll-builds
I went through each of their suggestions and none seem to apply to my situation.
My account and email are verified and I have built several other Github Pages from it without a problem.
The only plugins I use are:
gems:
- jekyll-sitemap
- jekyll-paginate
- jekyll-gist
- jekyll-feed
which are all officially supported.
All of the files in the repo are about 9 MB, far below the 1 GB limit.
There is no overriding of the source in _config.yml.
I am building from the master branch, so it has nothing to do with a missing /docs folder.
I don't believe I'm using any submodules.
I have tried leaving the URL in _config.yml blank, making it https://<user_ID>/<repo_name>/
, and making it https://<user_ID>/
with a baseurl of <repo_name>/
, none of which have worked.
What can I try to figure out what the problem is?
gem 'github-pages'
in your Gemfile. There is a problem with feed plugin. My advise is to find another, more simple, theme, this one is far from perfect. – David Jacquel