Skip to content

Commit b0379cd

Browse files
committed
Moved "UPX Binary Compression" step after "Create Binaries Zip" so that "Lua Exe.zip" contains uncompressed binaries.
1 parent 33729f8 commit b0379cd

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,6 @@ jobs:
4141
export INCLUDE=$WATCOM/h/os2:$WATCOM/h
4242
wmake -f wm_os232.mak
4343
44-
- name: UPX Binary Compression
45-
uses: crazy-max/ghaction-upx@v3
46-
with:
47-
version: latest
48-
args: -9 --8086
49-
files: |
50-
dist/bin/lua16.exe
51-
dist/bin/lua4g.exe
52-
dist/bin/luant.exe
53-
5444
- name: Copy DOS4GW Binary
5545
run: |
5646
cp $WATCOM/binw/dos4gw.exe dist/bin/
@@ -68,6 +58,16 @@ jobs:
6858
run: |
6959
zip -j9 --DOS-names "dist/Lua Exe.zip" dist/bin/*.exe example.lua
7060
61+
- name: UPX Binary Compression
62+
uses: crazy-max/ghaction-upx@v3
63+
with:
64+
version: latest
65+
args: -9 --8086
66+
files: |
67+
dist/bin/lua16.exe
68+
dist/bin/lua4g.exe
69+
dist/bin/luant.exe
70+
7171
- name: Create 160k 16-bit DOS Floppy Diskette Image
7272
run: |
7373
mformat -C -i dist/Lua160k.ima -v "LUA DOS" -f 160

0 commit comments

Comments
 (0)