From 4ed14fc00795c713ef0690f745440b8ffde34602 Mon Sep 17 00:00:00 2001 From: Robert Jelic Date: Sun, 9 Feb 2025 19:00:06 +0100 Subject: [PATCH] Test --- .github/workflows/docs.yml | 4 ++++ config.ld | 8 ++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2f13aa0..b840011 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,12 +30,16 @@ jobs: echo "Running LDoc..." ldoc . --dir out --ext md --verbose + echo "Moving markdown files..." + mv basalt.md manual.md README.md out/ 2>/dev/null || true + echo "Final output directory contents:" ls -la out/ if [ -z "$(ls -A out/)" ]; then echo "Error: No documentation files were generated!" exit 1 + fi - name: Deploy if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} uses: peaceiris/actions-gh-pages@v3 diff --git a/config.ld b/config.ld index 8d0d976..a499cd7 100644 --- a/config.ld +++ b/config.ld @@ -1,11 +1,7 @@ project = 'Basalt2' title = 'Basalt Documentation' description = 'A UI Framework for ComputerCraft' -file = 'src' +file = {'src'} dir = 'out' -one = true format = 'markdown' -ext = '.md' -all = true -merge = true -output = 'out' \ No newline at end of file +all = true \ No newline at end of file