Merge pull request 'fix(ci): use localhost:3000 for docs runner checkout' (#111) from fix/docs-checkout-localhost into main
Some checks failed
Deploy Docs / build-and-deploy (push) Failing after 0s
Build and Test / build (push) Failing after 1m47s

Reviewed-on: #111
This commit was merged in pull request #111.
This commit is contained in:
2026-02-09 14:47:00 +00:00

View File

@@ -13,11 +13,12 @@ jobs:
steps:
- name: Checkout
run: |
REPO_URL="http://localhost:3000/kindred/create.git"
if [ -d .git ]; then
git fetch origin main
git checkout -f origin/main
git fetch "$REPO_URL" main
git checkout -f FETCH_HEAD
else
git clone --depth 1 --branch main https://git.kindred-systems.com/kindred/create.git .
git clone --depth 1 --branch main "$REPO_URL" .
fi
- name: Build mdBook