Skip to content

Commit 24e2463

Browse files
committed
fix build for v1.2.0
1 parent 61c3677 commit 24e2463

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/build-launcher.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,17 @@ jobs:
224224
- name: Copy app icon (Unix)
225225
if: runner.os != 'Windows'
226226
working-directory: launcher
227-
run: cp appicon.png build/appicon.png
227+
run: |
228+
mkdir -p build
229+
cp appicon.png build/appicon.png
228230
229231
- name: Copy app icon (Windows)
230232
if: runner.os == 'Windows'
231233
working-directory: launcher
232234
shell: pwsh
233-
run: Copy-Item "appicon.png" "build\appicon.png"
235+
run: |
236+
New-Item -ItemType Directory -Force -Path build
237+
Copy-Item "appicon.png" "build\appicon.png"
234238
235239
# Build launcher with production tag
236240
- name: Build launcher (Unix)

0 commit comments

Comments
 (0)