Reputation: 3247
I'm trying to add a new post to a blog using Jekyll and Github Pages (Untouched since 08/2015)
However even though the Travis build passes, the Github Pages build fails without a single error message
I'm guessing it's about some outdated plugins, but I've got no idea what is it
Here's the repository:
https://github.com/wende/wende.github.io/
Upvotes: 2
Views: 383
Reputation: 3247
It turns out Github Pages use Jekyll 3.2.1 now. Which requires .config.yml
"theme" property to be empty.
Changing theme to theme_settings and all references to it fixed the issue
Upvotes: 3