Skip to content

Commit 10b039b

Browse files
committed
fix: build command
1 parent 576741a commit 10b039b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ldoc_artifact.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
luarocks install penlight
4949
luarocks install ldoc
5050
- name: Run LDoc
51-
run: ldoc "${{ runner.temp }}/source/" -d "${{ runner.temp }}/PR3-Doc/" --unsafe_no_sandbox
51+
run: ldoc . -c "${{ runner.temp }}/source/config.ld" --unsafe_no_sandbox
5252
- name: Upload Artifact (ZIP)
5353
uses: actions/upload-artifact@v6
5454
with:

build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ldoc "." -d "../PR3-Doc" --unsafe_no_sandbox
1+
ldoc . -c config.ld --unsafe_no_sandbox

config.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ldoc.title = "PR3R Lua Documentation"
1919
ldoc.full_description = "Platform Racing 3 is two-dimensional online racing game. Create your own levels and blocks, or play levels created by other players! Feature rich tools to make your vision come true! Draw amazing art or create unique consepts using different combinations of block types!"
2020
ldoc.format = "markdown"
2121
ldoc.output = "index"
22-
ldoc.dir = "../PR3-Doc/" -- This is relative to working directory from which LDoc is called, NOT the source directory LDoc is reading from
22+
ldoc.dir = "../PR3-Doc/"
2323
ldoc.ext = "html"
2424

2525
ldoc.template = "template.ltp"

0 commit comments

Comments
 (0)