Upgrade Jekyll and replace github-pages meta-gem with github action - #534
Open
erikrozendaal wants to merge 1 commit into
Open
Upgrade Jekyll and replace github-pages meta-gem with github action#534erikrozendaal wants to merge 1 commit into
erikrozendaal wants to merge 1 commit into
Conversation
After merging to master the Github site settings need to be reconfigured to use an action-based build instead of the legacy build.
erikrozendaal
force-pushed
the
upgrade-jekyll
branch
from
August 6, 2026 09:39
31b42de to
f0955e2
Compare
There was a problem hiding this comment.
Pull request overview
Updates the documentation site toolchain to build with a GitHub Actions Pages workflow instead of relying on the github-pages meta-gem, and refreshes the docs’ Ruby/Jekyll dependency set accordingly.
Changes:
- Adds a GitHub Actions workflow to build and deploy
docs/to GitHub Pages. - Replaces
github-pageswith a direct Jekyll 4.4.x + plugin Gemfile for the docs site and updates the lockfile. - Updates local dev dependencies (Nix) to support the new docs gem set (e.g., OpenSSL).
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
flake.nix |
Adds OpenSSL to the dev environment to support updated native/build dependencies for docs tooling. |
docs/Gemfile |
Switches docs to jekyll ~> 4.4 and explicit plugins, removing github-pages. |
docs/Gemfile.lock |
Refreshes/resolves docs gem dependencies for the new Jekyll/plugin set. |
docs/.ruby-version |
Aligns docs Ruby version with the updated toolchain. |
.github/workflows/pages.yml |
Introduces an action-based build + deploy pipeline for GitHub Pages from docs/. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
6
to
10
| group :jekyll_plugins do | ||
| gem 'github-pages' | ||
| gem 'jekyll-feed' | ||
| gem 'jekyll-include-cache' | ||
| gem 'jekyll-remote-theme' | ||
| gem 'jekyll-sitemap' |
Comment on lines
+38
to
+42
| - name: Build site | ||
| run: bundle exec jekyll build | ||
| env: | ||
| JEKYLL_ENV: production | ||
| - name: Upload artifact |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
After merging to master the Github site settings need to be reconfigured to use an action-based build instead of the legacy build.