You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,20 +27,20 @@ Install specific version of Lua:
27
27
```yaml
28
28
- uses: xpol/setup-lua@v1
29
29
with:
30
-
luaVersion: "5.1.5"
30
+
lua-version: "5.1.5"
31
31
```
32
32
33
33
Install specific version of LuaJIT:
34
34
35
35
```yaml
36
36
- uses: xpol/setup-lua@v1
37
37
with:
38
-
luaVersion: "luajit-2.0.5"
38
+
lua-version: "luajit-2.0.5"
39
39
```
40
40
41
41
## Inputs
42
42
43
-
### `luaVersion`
43
+
### `lua-version`
44
44
45
45
**Default**: `"5.3.5"`
46
46
@@ -106,7 +106,7 @@ jobs:
106
106
107
107
- uses: xpol/setup-lua@v1
108
108
with:
109
-
luaVersion: "5.1.5"
109
+
lua-version: "5.1.5"
110
110
111
111
- uses: leafo/gh-actions-luarocks@v2
112
112
@@ -122,7 +122,7 @@ jobs:
122
122
123
123
This example:
124
124
125
-
* Uses Lua 5.1.5 — You can use another version by chaning the `luaVersion` varible. LuaJIT versions can be used by prefixing the version with `luajit-`, i.e. `luajit-2.1.0-beta3`
125
+
* Uses Lua 5.1.5 — You can use another version by chaning the `lua-version` varible. LuaJIT versions can be used by prefixing the version with `luajit-`, i.e. `luajit-2.1.0-beta3`
126
126
* Uses a `.rockspec` file the root directory of your repository to install dependencies and test packaging the module via `luarocks make`
127
127
128
128
View the documentation for the individual actions (linked above) to learn more about how they work.
0 commit comments