mirror of
https://github.com/araxiaonline/WoWDBDefs.git
synced 2026-06-13 03:32:22 -04:00
dump_and_merge: fix luacasc dep
This commit is contained in:
4
.github/workflows/dump_and_merge.yml
vendored
4
.github/workflows/dump_and_merge.yml
vendored
@@ -45,10 +45,10 @@ jobs:
|
||||
uses: leafo/gh-actions-luarocks@v4
|
||||
- name: Set up Luarocks
|
||||
if: "${{ github.event.inputs.url == '' }}"
|
||||
run: cat code/lua/rocks.txt | xargs -n1 luarocks install
|
||||
run: cd code/lua && luarocks make
|
||||
- name: Dump exe
|
||||
if: "${{ github.event.inputs.url == '' }}"
|
||||
run: lua code/lua/getexe.lua ${{ github.event.inputs.product }} ${{ github.event.inputs.config }}
|
||||
run: getexe ${{ github.event.inputs.product }} ${{ github.event.inputs.config }}
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
|
||||
17
code/lua/getexe-scm-0.rockspec
Normal file
17
code/lua/getexe-scm-0.rockspec
Normal file
@@ -0,0 +1,17 @@
|
||||
rockspec_format = '3.0'
|
||||
package = 'getexe'
|
||||
version = 'scm-0'
|
||||
source = { url = '' }
|
||||
dependencies = {
|
||||
'argparse',
|
||||
'luacasc < 1.16',
|
||||
'penlight',
|
||||
}
|
||||
build = {
|
||||
type = 'none',
|
||||
install = {
|
||||
bin = {
|
||||
getexe = 'getexe.lua',
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
argparse
|
||||
luacasc
|
||||
penlight
|
||||
Reference in New Issue
Block a user