From b34c312deb901c824b15af37626758a7b4a591ca Mon Sep 17 00:00:00 2001 From: Carroll Vance Date: Mon, 23 Feb 2026 14:12:05 -0600 Subject: [PATCH] Fix issue with checkout not working for copying llms.txt --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ffb9627..f51fb31 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -42,7 +42,7 @@ jobs: git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" git fetch origin gh-pages - git checkout gh-pages + git checkout -f gh-pages cp /tmp/llms.txt llms.txt git add llms.txt git diff --staged --quiet || git commit -m "Update llms.txt at docs root"