Skip to content

Commit

Permalink
Added explicit IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinKennedy committed Jan 24, 2025
1 parent d7c9389 commit c42aa9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/luarocks-rockspec-expander/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
path: '.dependencies/luarocks-tag-release'

- name: Check for Lua or LuaJIT. Fallback to LuaJIT if needed - Linux
id: check-lua
id: check-lua-linux
if: runner.os == 'Linux'
shell: bash
run: |
Expand All @@ -44,7 +44,7 @@ runs:
fi
- name: Check for Lua or LuaJIT. Fallback to LuaJIT if needed - Windows
id: check-lua
id: check-lua-windows
if: runner.os == 'Windows'
shell: bash
run: |
Expand All @@ -66,7 +66,7 @@ runs:
# The user hasn't installed lua yet. Let's do it for them
- name: Install A Lua Interpreter
if: ${{ steps.check-lua.outputs.needs_luajit_install == 'true' }}
if: ${{ steps.check-lua-linux.outputs.needs_luajit_install == 'true' || steps.check-lua-linux.outputs.needs_luajit_install == 'true'}}
uses: luarocks/gh-actions-lua@v10
with:
# Neovim is compiled with LuaJIT so we might as well match. But it
Expand Down

0 comments on commit c42aa9b

Please sign in to comment.