Skip to content

Commit 4b0f91b

Browse files
committed
Update build-release-binaries.yml
1 parent 05c85ad commit 4b0f91b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build-release-binaries.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,20 @@ jobs:
8888
if (-not (test-path buildroot/bin)) { mkdir -p buildroot/bin }
8989
if: contains(matrix.os, 'windows')
9090

91-
- name: Make Binary Directory (Windows)
91+
- name: Make Binary Directory (Linux/Mac)
9292
run: |
9393
mkdir -p buildroot/bin
9494
if: ${{ !contains(matrix.os, 'windows') }}
9595

96-
- name: Move Binary
96+
- name: Move Binary (Windows)
97+
run: |
98+
if (-not (test-path buildroot/bin/micro.sfx)) { mv micro.sfx buildroot/bin }
99+
if: contains(matrix.os, 'windows')
100+
101+
- name: Move Binary (Linux/Mac)
97102
run: |
98103
mv micro.sfx buildroot/bin
104+
if: ${{ !contains(matrix.os, 'windows') }}
99105

100106
- name: SPC Combine
101107
run: |

0 commit comments

Comments
 (0)