From cea473b6546bf811d86e1b3d781f2512569bb85a Mon Sep 17 00:00:00 2001 From: KaraZajac Date: Sun, 22 Mar 2026 12:08:47 -0400 Subject: [PATCH] Fix GitHub Pages: serve docs/ as site root The workflow was uploading the entire repo, so the site root had no index.html (it lives in docs/). Now uploads just docs/ so the landing page and protocol docs are served at the root URL. --- .github/workflows/static.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index f2c9e97..9e22331 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -36,8 +36,8 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - # Upload entire repository - path: '.' + # Upload docs directory as site root + path: 'docs' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4