File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -304,14 +304,14 @@ jobs:
304
304
- name : Delete previous artifact, which may exist due to caching (Windows - MSI)
305
305
if : startsWith(matrix.platform, 'windows') && contains(matrix.tauri_bundle, 'msi')
306
306
run : |
307
- rm -Force "runtime/target/${{ matrix.rust_target }}/release/bundle/msi/MindWork AI Studio_*.msi"
308
- rm -Force "runtime/target/${{ matrix.rust_target }}/release/bundle/msi/MindWork AI Studio*msi.zip*"
307
+ rm -Force "runtime/target/${{ matrix.rust_target }}/release/bundle/msi/MindWork AI Studio_*.msi" -ErrorAction SilentlyContinue
308
+ rm -Force "runtime/target/${{ matrix.rust_target }}/release/bundle/msi/MindWork AI Studio*msi.zip*" -ErrorAction SilentlyContinue
309
309
310
310
- name : Delete previous artifact, which may exist due to caching (Windows - NSIS)
311
311
if : startsWith(matrix.platform, 'windows') && contains(matrix.tauri_bundle, 'nsis')
312
312
run : |
313
- rm -Force "runtime/target/${{ matrix.rust_target }}/release/bundle/nsis/MindWork AI Studio_*.exe"
314
- rm -Force "runtime/target/${{ matrix.rust_target }}/release/bundle/nsis/MindWork AI Studio*nsis.zip*"
313
+ rm -Force "runtime/target/${{ matrix.rust_target }}/release/bundle/nsis/MindWork AI Studio_*.exe" -ErrorAction SilentlyContinue
314
+ rm -Force "runtime/target/${{ matrix.rust_target }}/release/bundle/nsis/MindWork AI Studio*nsis.zip*" -ErrorAction SilentlyContinue
315
315
316
316
- name : Delete previous artifact, which may exist due to caching (Linux - Debian Package)
317
317
if : startsWith(matrix.platform, 'ubuntu') && contains(matrix.tauri_bundle, 'deb')
You can’t perform that action at this time.
0 commit comments