Skip to content

Commit 3f8c270

Browse files
committed
please work
1 parent 976edff commit 3f8c270

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/bundle-ucm.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,8 @@ jobs:
227227
run: |
228228
echo "Running on ${{matrix.nojit == true}}"
229229
echo "Running on ${{matrix.nojit == 'true'}}"
230+
echo "Running on ${{matrix.nojit == false}}"
231+
echo "Running on ${{matrix.nojit == 'false'}}"
230232
echo "Running on ${{matrix.nojit != true}}"
231233
echo "Running on ${{matrix.nojit != 'true'}}"
232234
echo "Running on ${{!matrix.nojit}}"
@@ -245,13 +247,13 @@ jobs:
245247
- name: restore permissions on ucm
246248
run: chmod +x ${{env.staging_dir}}/unison/unison
247249
- name: download racket lib
248-
if: matrix.nojit && matrix.nojit != 'true'
250+
if: (!matrix.nojit)
249251
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
250252
with:
251253
name: racket-lib
252254
path: ${{env.staging_dir}}/racket/
253255
- name: download unison-runtime
254-
if: matrix.nojit && matrix.nojit != 'true'
256+
if: (!matrix.nojit)
255257
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
256258
with:
257259
name: unison-runtime-${{matrix.os}}
@@ -260,7 +262,7 @@ jobs:
260262
# here we have the `if:` not because of the missing .exe on Windows,
261263
# nor the lack of need to chmod, but because /runtime/bin/ probably doesn't exist
262264
# due to differences in `raco distribute` on Windows vs macOS and Linux.
263-
if: runner.os != 'Windows' && matrix.nojit && matrix.nojit != 'true'
265+
if: runner.os != 'Windows' && !matrix.nojit
264266
run: chmod +x ${{env.staging_dir}}/runtime/bin/unison-runtime
265267
- name: download latest unison-local-ui
266268
run: |

0 commit comments

Comments
 (0)