We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 043cf28 commit 7eca2f4Copy full SHA for 7eca2f4
1 file changed
.github/workflows/generate-docs.yml
@@ -5,6 +5,7 @@ on:
5
branches:
6
- main
7
paths:
8
+ - ".github/workflows/generate-docs.yml"
9
- "types/**"
10
workflow_dispatch:
11
@@ -22,18 +23,18 @@ jobs:
22
23
uses: actions/checkout@v6
24
with:
25
repository: BlueLua/bluelua.github.io
- path: .docgen
26
+ path: ${{ runner.temp }}/docgen
27
28
- name: Setup Lua
29
uses: leafo/gh-actions-lua@v13
30
31
luaVersion: "luajit"
32
33
- name: Generate docs
- run: luajit .docgen/scripts/generate-api-docs.lua types docs
34
+ run: luajit "${RUNNER_TEMP}/docgen/scripts/generate-api-docs.lua" types docs
35
36
- name: Clean workflow helpers
- run: rm -rf .docgen .lua
37
+ run: rm -rf .lua
38
39
- name: Open docs PR
40
uses: peter-evans/create-pull-request@v7
0 commit comments