From c8cb618cd318fbdfcc73bf16e2739fcf3feebed6 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Fri, 25 Sep 2026 15:24:45 +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 continuous-time-mcs.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 b04a598..52aedf9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -95,7 +95,8 @@ jobs: uses: quantecon/actions/publish-gh-pages@v0.11.1 with: build-dir: _build/html - cname: continuous-time-mcs.quantecon.org + # Custom domain (continuous-time-mcs.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: 'continuous-time-mcs-html' github-token: ${{ secrets.GITHUB_TOKEN }}