Skip to content

Commit fcfdc4a

Browse files
committed
Relocate Lua scripts and update workflow paths.
Moved Lua scripts to `demo/minimum` directory and updated workflow steps accordingly to reflect the new paths. Adjusted file operations in the CI workflow to target the relocated scripts for consistency.
1 parent 2102d3f commit fcfdc4a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ jobs:
6363
6464
- name: Ensure Lua Scripts Have CR/LF Line Endings
6565
run: |
66-
unix2dos *.lua
66+
unix2dos demo/minimum/*.lua
6767
6868
- name: Create Binaries Zip
6969
run: |
70-
zip -j9 --DOS-names "dist/Lua Exe.zip" dist/bin/*.exe *.lua
70+
zip -j9 --DOS-names "dist/Lua Exe.zip" dist/bin/*.exe demo/minimum/*.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 *.lua ::
85+
mcopy -i dist/Lua160k.ima dist/bin/lua16.exe demo/minimum/*.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 *.lua ::
90+
mcopy -i dist/LuaMulti.ima dist/bin/*.exe demo/minimum/*.lua ::
9191
9292
- name: Create Floppy Disk Images Zip
9393
run: |
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)