From 97a4b0e749caae09e767dfecac8cfcb4622c8049 Mon Sep 17 00:00:00 2001 From: Igor Lins e Silva <4753812+igorls@users.noreply.github.com> Date: Tue, 14 Apr 2026 11:37:47 -0300 Subject: [PATCH] fix: ship CNAME in Pages artifact to pin custom domain MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds website/public/CNAME containing `mempalaceofficial.com` so the VitePress build output always includes /CNAME in the Pages artifact. Without this, the custom-domain setting is only held in the repo's Pages API config — if it ever drifts (manual edit, org move, workflow change), the site reverts to .github.io with no record in source. Note: this does not fix the current site outage. The root cause is DNS — mempalaceofficial.com has no A/AAAA/CNAME records pointing at GitHub Pages IPs. That has to be fixed at the registrar. This commit is the belt-and-suspenders so that once DNS is back, the domain is pinned in source and the next workflow refactor can't accidentally drop it. --- website/public/CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 website/public/CNAME diff --git a/website/public/CNAME b/website/public/CNAME new file mode 100644 index 0000000..3e353cb --- /dev/null +++ b/website/public/CNAME @@ -0,0 +1 @@ +mempalaceofficial.com