forked from leafo/gh-actions-lua
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (20 loc) · 654 Bytes
/
Copy pathaction.yml
File metadata and controls
24 lines (20 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: "Install Lua/LuaJIT"
description: "Download, build, and install Lua or LuaJIT for use with scripts, tests and more"
branding:
icon: 'moon'
color: 'blue'
inputs:
luaVersion:
description: "The version of Lua to install, must be available on https://www.lua.org/ftp/ or http://luajit.org/download.html"
required: false
default: "5.4"
luaCompileFlags:
description: "Command line flags passed to make when building Lua"
required: false
buildCache:
description: "Set to 'false' to skip restoring .lua from cache and always compile it"
required: false
default: 'true'
runs:
using: 'node12'
main: 'main.js'