From ec3fbf6b1baff7d7cec49671705ddcdf6c0677cc Mon Sep 17 00:00:00 2001 From: Salvatore Martorana <124510313+SMartorana@users.noreply.github.com> Date: Sun, 8 Mar 2026 22:10:49 +0100 Subject: [PATCH] Enable orphan branch and Jekyll for docs Update the GitHub Actions docs publish step in .github/workflows/move-docs.yml to set force_orphan: true and enable_jekyll: true. This ensures the gh-pages branch is published as an orphan branch and that Jekyll processing is enabled for the deployed documentation site. --- .github/workflows/move-docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/move-docs.yml b/.github/workflows/move-docs.yml index e997fc9..eab3eb9 100644 --- a/.github/workflows/move-docs.yml +++ b/.github/workflows/move-docs.yml @@ -87,3 +87,5 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./build/nplex/docs/ publish_branch: gh-pages + force_orphan: true + enable_jekyll: true