From cc4e0bacb2cfb855f117a8758ee6e2163715ae88 Mon Sep 17 00:00:00 2001 From: Quique Llorente Date: Thu, 27 Jan 2022 13:06:11 +0100 Subject: [PATCH] docs: Add .nojekyll build marker To prevent github from running jekyll on the already generated page a .jekyll have has to be added. https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#troubleshooting-publishing-problems-with-your-github-pages-site Signed-off-by: Quique Llorente --- docs/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Makefile b/docs/Makefile index 008fe4a2..2d88f4bf 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -24,6 +24,7 @@ build: fi rm -rf $(dest_dir) bundle exec jekyll build --trace --source . --destination $(dest_dir) + touch $(dest_dir)/.nojekyll .PHONY: check check: build