We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61c3677 commit 24e2463Copy full SHA for 24e2463
1 file changed
.github/workflows/build-launcher.yml
@@ -224,13 +224,17 @@ jobs:
224
- name: Copy app icon (Unix)
225
if: runner.os != 'Windows'
226
working-directory: launcher
227
- run: cp appicon.png build/appicon.png
+ run: |
228
+ mkdir -p build
229
+ cp appicon.png build/appicon.png
230
231
- name: Copy app icon (Windows)
232
if: runner.os == 'Windows'
233
234
shell: pwsh
- run: Copy-Item "appicon.png" "build\appicon.png"
235
236
+ New-Item -ItemType Directory -Force -Path build
237
+ Copy-Item "appicon.png" "build\appicon.png"
238
239
# Build launcher with production tag
240
- name: Build launcher (Unix)
0 commit comments