From 2ebf301aad9361ca63656d582e15001cc125c7fe Mon Sep 17 00:00:00 2001 From: noelmcloughlin Date: Sun, 14 May 2023 01:08:27 +0100 Subject: [PATCH] fix(github): ensure about.md is handled --- .../.github/workflows/deploy-docs.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/{{cookiecutter.project_name}}/.github/workflows/deploy-docs.yaml b/{{cookiecutter.project_name}}/.github/workflows/deploy-docs.yaml index 29fde14..be156ba 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/deploy-docs.yaml +++ b/{{cookiecutter.project_name}}/.github/workflows/deploy-docs.yaml @@ -29,4 +29,7 @@ jobs: mkdir -p docs touch docs/.nojekyll make gendoc + ([ ! -f docs/about.md ] && cp src/docs/about.md docs/) || true make mkd-gh-deploy + +...