Skip to content

Commit 856ae8b

Browse files
committed
Update workflow to include all Lua files in the repository root
Modified the GitHub Actions workflow to bundle all `.lua` files (not just the former `example.lua`) into the zip and diskette images.
1 parent 5e03492 commit 856ae8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Create Binaries Zip
6969
run: |
70-
zip -j9 --DOS-names "dist/Lua Exe.zip" dist/bin/*.exe example.lua
70+
zip -j9 --DOS-names "dist/Lua Exe.zip" dist/bin/*.exe *.lua
7171
7272
- name: UPX Binary Compression
7373
uses: crazy-max/ghaction-upx@v3
@@ -82,12 +82,12 @@ jobs:
8282
- name: Create 160k 16-bit DOS Floppy Diskette Image
8383
run: |
8484
mformat -C -i dist/Lua160k.ima -v "LUA DOS" -f 160
85-
mcopy -i dist/Lua160k.ima dist/bin/lua16.exe example.lua ::
85+
mcopy -i dist/Lua160k.ima dist/bin/lua16.exe *.lua ::
8686
8787
- name: Create 1.4M Multi-Platform Floppy Diskette Image
8888
run: |
8989
mformat -C -i dist/LuaMulti.ima -v "LUA MULTIOS" -f 1440
90-
mcopy -i dist/LuaMulti.ima dist/bin/*.exe example.lua ::
90+
mcopy -i dist/LuaMulti.ima dist/bin/*.exe *.lua ::
9191
9292
- name: Create Floppy Disk Images Zip
9393
run: |

0 commit comments

Comments
 (0)