Skip to content

Commit 0fb6ccd

Browse files
committed
Update workflows to include demo/extra/*.lua files
Expanded CR/LF conversion, zip creation, and 1.44MB disk image steps to include Lua scripts from the `demo/extra` directory.
1 parent ee46b19 commit 0fb6ccd

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
@@ -78,11 +78,11 @@ jobs:
7878
7979
- name: Ensure Lua Scripts Have CR/LF Line Endings
8080
run: |
81-
unix2dos demo/minimum/*.lua
81+
unix2dos demo/extra/*.lua demo/minimum/*.lua
8282
8383
- name: Create Binaries Zip
8484
run: |
85-
zip -j9 --DOS-names "dist/Lua Exe.zip" dist/bin/*.exe demo/minimum/*.lua
85+
zip -j9 --DOS-names "dist/Lua Exe.zip" dist/bin/*.exe demo/extra/*.lua demo/minimum/*.lua
8686
8787
- name: UPX Binary Compression
8888
uses: crazy-max/ghaction-upx@v3
@@ -102,7 +102,7 @@ jobs:
102102
- name: Create 1.4M Multi-Platform Floppy Diskette Image
103103
run: |
104104
mformat -C -i dist/LuaMulti.ima -v "LUA MULTIOS" -f 1440
105-
mcopy -i dist/LuaMulti.ima dist/bin/*.exe demo/minimum/*.lua ::
105+
mcopy -i dist/LuaMulti.ima dist/bin/*.exe demo/extra/*.lua demo/minimum/*.lua ::
106106
107107
- name: Create Floppy Disk Images Zip
108108
run: |

0 commit comments

Comments
 (0)