From e89cd7ea97130967afde410ceb33106592809e06 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 18 Mar 2026 05:56:25 +0000 Subject: [PATCH 1/2] add .nojekyll to docs/ to disable Jekyll processing GitHub Pages runs Jekyll by default, which can prevent static files from being served correctly. https://claude.ai/code/session_01BgQZR5yFQxP94gNvDkvavs --- docs/.nojekyll | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/.nojekyll diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 0000000..e69de29 From fbc31c27a663b36342e953b293aed878b2a69f5d Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 18 Mar 2026 06:02:35 +0000 Subject: [PATCH 2/2] add GitHub Pages deployment workflow The docs folder had content but no workflow to deploy it via GitHub Actions. This adds the standard actions/deploy-pages workflow triggered on changes to docs/. https://claude.ai/code/session_01BgQZR5yFQxP94gNvDkvavs --- .github/workflows/pages.yml | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 0000000..f3e2794 --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,39 @@ +name: Deploy Wiki to GitHub Pages + +on: + push: + branches: [main] + paths: + - "docs/**" + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Pages + uses: actions/configure-pages@v5 + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: docs + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4