Release Workflow

This commit is contained in:
Robert Jelic
2025-02-10 17:26:31 +01:00
parent 6a64fa74f9
commit a81e62c227
4 changed files with 44 additions and 2 deletions

View File

@@ -35,7 +35,9 @@ jobs:
run: |
find src -type f -name "*.lua" | while read file; do
filename=$(basename "$file")
lua tools/markdown.lua "$file" "build_docs/docs/references/${filename%.lua}.md"
if [ "$filename" != "LuaLS.lua" ]; then
lua tools/markdown.lua "$file" "build_docs/docs/references/${filename%.lua}.md"
fi
done
- name: Deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}