From ad08dad332166ab409ad1992ec8c7a2a116fced2 Mon Sep 17 00:00:00 2001 From: Albert Dellor <46529526+dell-datascience@users.noreply.github.com> Date: Sun, 21 Jul 2024 10:57:55 +0100 Subject: [PATCH] chore: Update Gemfile to include optional gem 'github-pages' for jekyll_plugins group --- Gemfile | 3 +++ netlify.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 6957a4f..c1d76ca 100644 --- a/Gemfile +++ b/Gemfile @@ -7,3 +7,6 @@ gem 'jekyll' gem 'github-pages', group: :jekyll_plugins # Other plugins and dependencies +group :jekyll_plugins do + gem 'github-pages' # Optional if you are using GitHub Pages as well + end \ No newline at end of file diff --git a/netlify.toml b/netlify.toml index c7bfb3f..15fb657 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,5 +1,5 @@ [build] - command = "bundle exec jekyll build" + command = "gem update --system && bundle install && bundle exec jekyll build" publish = "_site" [build.environment]