From 3f78577de7632fdf66578fe01a155afe312bb3d0 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Thu, 5 Oct 2023 02:20:26 -0700 Subject: [PATCH] workflow: push CNAME to resulting site Due to how our github-pages-deploy-action container works, without adding the CNAME from the main branch, it will be deleted. This will keep it there. Note that this should be reverted and CNAME removed, should the site remain on the default github.io domain. --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 17916c7c..61f71055 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -45,6 +45,7 @@ jobs: # miscellaneous files needed for GitHub etc run: | touch site/.nojekyll + cp CNAME site/CNAME - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.4.1