From 58ac571845a02e54a15e31b5c82790e1cb8627ec Mon Sep 17 00:00:00 2001 From: Ian Stride Date: Tue, 1 Oct 2024 12:48:44 +0100 Subject: [PATCH] Ensure CNAME file is copied over to built docs site The github action that deploys the docs site tries to create a CNAME file in a directory that doesn't yet exist, and fails. Alternative is to just create a CNAME file in 'documentation/docs', where it will be copied over to the final site. --- .github/workflows/documentation-deploy.yml | 1 - documentation/{ => docs}/CNAME | 0 2 files changed, 1 deletion(-) rename documentation/{ => docs}/CNAME (100%) diff --git a/.github/workflows/documentation-deploy.yml b/.github/workflows/documentation-deploy.yml index 596ce694e..d8ace0e14 100644 --- a/.github/workflows/documentation-deploy.yml +++ b/.github/workflows/documentation-deploy.yml @@ -22,6 +22,5 @@ jobs: uses: mhausenblas/mkdocs-deploy-gh-pages@e55ecab6718b449a90ebd4313f1320f9327f1386 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CUSTOM_DOMAIN: open-app-builder.com CONFIG_FILE: documentation/mkdocs.yml REQUIREMENTS: documentation/requirements.txt diff --git a/documentation/CNAME b/documentation/docs/CNAME similarity index 100% rename from documentation/CNAME rename to documentation/docs/CNAME