From b3b0e110c83cfcaf1367d647f366055a5f2a649e Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Tue, 3 Feb 2026 08:52:13 -0800 Subject: [PATCH] Add docs/index.md instead of generating in workflow Keep the index page as a normal doc file that can be edited, rather than generating it during the build workflow. Co-Authored-By: Claude Opus 4.5 --- .forgejo/workflows/build-blumeops.yaml | 13 +------------ docs/index.md | 7 +++++++ 2 files changed, 8 insertions(+), 12 deletions(-) create mode 100644 docs/index.md diff --git a/.forgejo/workflows/build-blumeops.yaml b/.forgejo/workflows/build-blumeops.yaml index d115d01..52d98c0 100644 --- a/.forgejo/workflows/build-blumeops.yaml +++ b/.forgejo/workflows/build-blumeops.yaml @@ -58,21 +58,10 @@ jobs: cp "$GITHUB_WORKSPACE/docs/quartz.config.ts" . cp "$GITHUB_WORKSPACE/docs/quartz.layout.ts" . - # Copy docs as content + # Copy docs as content (includes index.md) rm -rf content cp -r "$GITHUB_WORKSPACE/docs" content - # Create index page - cat > content/index.md << 'EOF' - --- - title: BlumeOps Documentation - --- - - Welcome to the BlumeOps documentation. - - [[README|Documentation Home]] - EOF - # Build echo "Building static site..." npx quartz build diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..409a10e --- /dev/null +++ b/docs/index.md @@ -0,0 +1,7 @@ +--- +title: BlumeOps Documentation +--- + +Welcome to the BlumeOps documentation. + +[[README|Documentation Home]]