From 4a425661f74aee1504c9508c461aa836d4f5fd30 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 27 Aug 2025 15:59:07 +0300 Subject: [PATCH] Remove MSI cleanup step from Windows build workflow Deleted the step that removes MSI files from the dist directory in the Windows build workflow. This may be to preserve MSI artifacts for later use or debugging. --- .github/workflows/build-windows.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 8cfbec3..adee88e 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -188,7 +188,6 @@ jobs: # Clean previous build artifacts if (Test-Path "build\exe.*") { Remove-Item "build\exe.*" -Recurse -Force } if (Test-Path "build\bdist.*") { Remove-Item "build\bdist.*" -Recurse -Force } - if (Test-Path "dist\*.msi") { Remove-Item "dist\*.msi" -Force } # Build executable with FFmpeg python build\windows\setup-ffmpeg.py build