From 4fc578467b9d2249354aa097f6bbacc7a6b1bf50 Mon Sep 17 00:00:00 2001 From: Smana Date: Fri, 28 Aug 2026 08:53:29 +0200 Subject: [PATCH] fix(pages): drop the trailing dot from static/CNAME GitHub Pages rejects "blog.ogenki.io." as a custom domain and silently clears the setting, so the site falls back to smana.github.io and the custom domain starts serving 404s. static/CNAME has carried the trailing dot since the Actions setup in 890318e. The gh-pages copy was corrected by hand in 228d44d, but the source was left alone -- so the very next deploy from main copied the bad value back over the fix and dropped the domain again. Fixing it at the source makes the correction survive future deploys. --- static/CNAME | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/CNAME b/static/CNAME index c584db53..27157510 100644 --- a/static/CNAME +++ b/static/CNAME @@ -1 +1 @@ -blog.ogenki.io. +blog.ogenki.io \ No newline at end of file