We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05c85ad commit 4b0f91bCopy full SHA for 4b0f91b
.github/workflows/build-release-binaries.yml
@@ -88,14 +88,20 @@ jobs:
88
if (-not (test-path buildroot/bin)) { mkdir -p buildroot/bin }
89
if: contains(matrix.os, 'windows')
90
91
- - name: Make Binary Directory (Windows)
+ - name: Make Binary Directory (Linux/Mac)
92
run: |
93
mkdir -p buildroot/bin
94
if: ${{ !contains(matrix.os, 'windows') }}
95
96
- - name: Move Binary
+ - 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)
102
103
mv micro.sfx buildroot/bin
104
+ if: ${{ !contains(matrix.os, 'windows') }}
105
106
- name: SPC Combine
107
0 commit comments