Skip to content

Commit 7608a17

Browse files
committed
Added lfs into main.yml
1 parent 328590e commit 7608a17

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,10 @@ jobs:
5555
lua tools/generate-docs.lua
5656
5757
cp -r build_docs/docs/references/* gh-pages/docs/references/
58-
59-
# Step 5: Deploy Documentation
58+
# Step 5: Install LuaFileSystem
59+
- name: Install LuaFileSystem
60+
run: luarocks install luafilesystem
61+
# Step 6: Deploy Documentation
6062
- name: Deploy Documentation
6163
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
6264
uses: peaceiris/actions-gh-pages@v3
@@ -65,7 +67,7 @@ jobs:
6567
publish_dir: ./gh-pages
6668
keep_files: true
6769

68-
# Step 6: Generate Changelog
70+
# Step 7: Generate Changelog
6971
#- name: Generate Changelog
7072
# id: changelog
7173
# uses: heinrichreimer/[email protected]

src/elements/Tree.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ local VisualElement = require("elements/VisualElement")
22
local sub = string.sub
33
---@cofnigDescription The tree element provides a hierarchical view of nodes that can be expanded and collapsed, with support for selection and scrolling.
44

5-
65
--- This is the tree class. It provides a hierarchical view of nodes that can be expanded and collapsed,
76
--- with support for selection and scrolling.
87
---@class Tree : VisualElement

0 commit comments

Comments
 (0)