Failed to build site.

I updated a link for a research article and now the page won’t build. I reverted to the old file and still won’t work.

The help details are nothing other than “failed to build”. Any help would be greatly appreciated!

Unfortunately that is a limitation of using GH Pages.

You’re likely to be able to find and solve the issue yourself by running your Jekyll site locally.

bundle exec jekyll serve --trace
1 Like

Also, check the history clock icon on repo. You’ll see a history of commits with ticks or x markers. Find the first commit that caused a break and that will tell you what you broke

You’re exactly right. We were pointing to a remote and had to add @main

Changed _config.yml: line 2
From remote_theme: daviddarnes/alembic to remote_theme: daviddarnes/alembic@main
1 Like