Skip to content

Commit

Permalink
dump_and_merge: fix luacasc dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ferronn-dev committed Oct 28, 2023
1 parent 048e460 commit 720d0e3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dump_and_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
17 changes: 17 additions & 0 deletions code/lua/getexe-scm-0.rockspec
Original file line number Diff line number Diff line change
@@ -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',
},
},
}
3 changes: 0 additions & 3 deletions code/lua/rocks.txt

This file was deleted.

0 comments on commit 720d0e3

Please sign in to comment.