fix(ci): replace actions/checkout with git clone in docs workflow #108

Merged
forbes merged 2 commits from fix/docs-workflow-no-node into main 2026-02-09 14:23:41 +00:00
Owner

The docs runner is a bare host without Node.js, so actions/checkout@v4 fails with:

Cannot find: node in PATH

Replace with a plain git fetch/git checkout that works without Node.

Changes

.gitea/workflows/docs.yml — Replace uses: actions/checkout@v4 with a run: step that does git fetch origin main && git checkout -f origin/main (or a fresh shallow clone if no .git exists).

The `docs` runner is a bare host without Node.js, so `actions/checkout@v4` fails with: ``` Cannot find: node in PATH ``` Replace with a plain `git fetch`/`git checkout` that works without Node. ## Changes **`.gitea/workflows/docs.yml`** — Replace `uses: actions/checkout@v4` with a `run:` step that does `git fetch origin main && git checkout -f origin/main` (or a fresh shallow clone if no `.git` exists).
forbes added 1 commit 2026-02-09 14:20:52 +00:00
fix(ci): replace actions/checkout with git clone in docs workflow
Some checks failed
Build and Test / build (pull_request) Has been cancelled
65a2bb98db
The docs runner is a bare host without Node.js, so actions/checkout@v4
fails with 'Cannot find: node in PATH'. Replace with a plain git
fetch/checkout that works without Node.
forbes added 1 commit 2026-02-09 14:23:32 +00:00
Merge branch 'main' into fix/docs-workflow-no-node
Some checks failed
Build and Test / build (pull_request) Has been cancelled
3c0b14b862
forbes merged commit bbee39431d into main 2026-02-09 14:23:41 +00:00
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kindred/create#108