From 379ff77c8d512c494580e9975c597c6052abed34 Mon Sep 17 00:00:00 2001 From: Spill-Tea Date: Wed, 16 Jul 2025 15:01:44 -0700 Subject: [PATCH 1/2] fix(workflow): Remove ending forward slash to correctly deploy docs. --- .github/workflows/build-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 4133d27..328dded 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -44,6 +44,6 @@ jobs: uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: _build/ + publish_dir: _build publish_branch: gh-pages force_orphan: true From 9aeac3bbc587e71f343d513b053f1ea55f80c19a Mon Sep 17 00:00:00 2001 From: Spill-Tea Date: Wed, 16 Jul 2025 15:04:09 -0700 Subject: [PATCH 2/2] fix(workflows): out of an abundance of caution, use dot forward slash in indicate current directory. --- .github/workflows/build-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 328dded..d822feb 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -44,6 +44,6 @@ jobs: uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: _build + publish_dir: ./_build publish_branch: gh-pages force_orphan: true