Skip to content

Commit 761ed85

Browse files
committed
Update build-release-binaries.yml
1 parent c084fdf commit 761ed85

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,18 @@ jobs:
8383
tar xzf "${{ matrix.compressed_file }}"
8484
if: ${{ !endsWith(matrix.compressed_file, 'zip') }}
8585

86-
- name: Move Binary
86+
- name: Make Binary Directory (Windows)
87+
run: |
88+
if (-not (test-path buildroot/bin)) { mkdir -p buildroot/bin }
89+
if: contains(matrix.os, 'windows')
90+
91+
- name: Make Binary Directory (Windows)
8792
run: |
8893
mkdir -p buildroot/bin
94+
if: ${{ !contains(matrix.os, 'windows') }}
95+
96+
- name: Move Binary
97+
run: |
8998
mv micro.sfx buildroot/bin
9099
91100
- name: SPC Combine

0 commit comments

Comments
 (0)