This commit is contained in:
Robert Jelic
2025-02-09 16:37:01 +01:00
parent 43dc597216
commit a019e5682c
2 changed files with 7 additions and 1 deletions

View File

@@ -38,10 +38,15 @@ jobs:
- name: Generate Documentation
run: |
echo "Checking config.ld location:"
pwd
ls -la config.ld || echo "config.ld not found in current directory"
echo "Available Lua-Files:"
find src -name "*.lua" -type f
ldoc . --verbose
echo "Running LDoc with explicit config path..."
ldoc . -c config.ld --verbose
if [ ! -d "docs" ]; then
echo "Documentation generation failed"

View File

@@ -186,5 +186,6 @@ function basalt.run(isActive)
end
end
end
basalt.autoUpdate = basalt.run
return basalt