Skip to content

Commit 209b1f4

Browse files
exclude render files depending on what os is used
1 parent 32d242f commit 209b1f4

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ jobs:
6161
haxe compile.hxml
6262
cd ../..
6363
- name: Compile
64-
run: haxelib run lime build linux -D ${{ inputs.buildFlags || 'commit' }}
64+
run: |
65+
rm -f assets/preload/gameRenders/renderlol.bat
66+
haxelib run lime build linux -D ${{ inputs.buildFlags || 'commit' }}
6567
- name: Clear Previous Cache
6668
uses: actions/github-script@main
6769
with:
@@ -138,7 +140,9 @@ jobs:
138140
haxe compile.hxml
139141
cd ../..
140142
- name: Compile
141-
run: haxelib run lime build windows -D ${{ inputs.buildFlags || 'commit' }}
143+
run: |
144+
Remove-Item -Force assets/preload/gameRenders/renderlinux.sh
145+
haxelib run lime build windows -D ${{ inputs.buildFlags || 'commit' }}
142146
- name: Clear Previous Cache
143147
uses: actions/github-script@main
144148
with:
@@ -214,7 +218,9 @@ jobs:
214218
haxe compile.hxml
215219
cd ../..
216220
- name: Compile
217-
run: haxelib run lime build mac -D ${{ inputs.buildFlags || 'commit' }}
221+
run: |
222+
rm -f assets/preload/gameRenders/renderlol.bat
223+
haxelib run lime build mac -D ${{ inputs.buildFlags || 'commit' }}
218224
- name: Clear Previous Cache
219225
uses: actions/github-script@main
220226
with:

0 commit comments

Comments
 (0)