From c3a808d3fc1a933c9893726b76d614afee397480 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 1 Mar 2026 00:12:10 +0000 Subject: [PATCH] Fix custom domain reset on GitHub Pages deployment Add `cname: docs.idfkit.com` to the peaceiris/actions-gh-pages deploy step. The `force_orphan: true` setting creates a fresh gh-pages branch on every deploy, which drops the CNAME file and resets the custom domain. https://claude.ai/code/session_01E1mVfKAyjMHCESBmwU3XiY --- .github/workflows/convert-docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/convert-docs.yml b/.github/workflows/convert-docs.yml index 31d285ee9..172837956 100644 --- a/.github/workflows/convert-docs.yml +++ b/.github/workflows/convert-docs.yml @@ -175,3 +175,4 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./dist force_orphan: true + cname: docs.idfkit.com