From 11699c49566f04f9c20ffb113954e73acc09bc09 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Fri, 25 Sep 2026 15:24:32 +1000 Subject: [PATCH] ci(publish): drop publish-gh-pages' cname input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The GitHub Actions Pages deploy that publish-gh-pages uses ignores a CNAME file, so the input never set the custom domain: Settings → Pages does, and it already holds intro.quantecon.org. From QuantEcon/actions v0.12.0 the action warns on every deploy that still passes it (QuantEcon/actions#109, QuantEcon/actions#110). Co-Authored-By: Claude Opus 5.5 (1M context) --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1f7153a6..3768d6c3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -105,7 +105,8 @@ jobs: uses: quantecon/actions/publish-gh-pages@v0.11.1 with: build-dir: _build/html - cname: intro.quantecon.org + # Custom domain (intro.quantecon.org): set in Settings → Pages. The Actions Pages + # deploy ignores a CNAME file, so publish-gh-pages' cname input has no effect. create-release-assets: 'true' asset-name: 'lecture-python-intro-html' github-token: ${{ secrets.GITHUB_TOKEN }}