Skip to content

Commit b1ac2bc

Browse files
committed
fix: add Lua setup step to release workflow
The workflow was failing because LuaRocks couldn't find a Lua installation. Added explicit Lua 5.1 setup before LuaRocks installation.
1 parent e93abb9 commit b1ac2bc

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,15 @@ jobs:
2020
neovim: true
2121
version: stable
2222

23-
- name: Install LuaRocks
23+
- name: Setup Lua
24+
uses: leafo/gh-actions-lua@v10
25+
with:
26+
luaVersion: "5.1"
27+
28+
- name: Setup LuaRocks
2429
uses: leafo/gh-actions-luarocks@v4
30+
with:
31+
luaRocksVersion: "3.11.0"
2532

2633
- name: Install dependencies
2734
run: |

0 commit comments

Comments
 (0)