2
votes

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 enter image description here

I'm guessing it's about some outdated plugins, but I've got no idea what is it

// _config.yml
enter image description here

// Gemfile enter image description here

Here's the repository:
https://github.com/wende/wende.github.io/

1
As of August 23, 2016, Github is using Jekyll 3.2 as described in this post. My guess is that if your last build was in August 2015 you were using an earlier version of Jekyll (the Gemfile.lock file in your repo says 3.1.6). If you upgrade your version of Jekyll does your site still build locally?Matt

1 Answers

3
votes

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