From 4d7ad64c3aec60b97548893952a4eab1d8c5617e Mon Sep 17 00:00:00 2001 From: Rootiest Date: Fri, 21 Aug 2026 01:23:34 -0400 Subject: [PATCH] fix(ci): drop remaining cd for working-directory consistency The only other cd left in the workflow mixed two working directories in one step: docs/build-manual.py --site runs from the repo root, then npm ci/astro build need docs/site. Split into two steps so each can use working-directory instead, keeping the whole file cd-free and consistent with the Cloudflare deploy step's fix. --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f41c1d..66157f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,10 +98,12 @@ jobs: with: node-version: "24" + - name: Generate site content + run: python3 docs/build-manual.py --site + - name: Build documentation site + working-directory: docs/site run: | - python3 docs/build-manual.py --site - cd docs/site npm ci npx astro build