Switch Windows build to Python script, remove PowerShell

Replaces PowerShell build script with Python in CI workflow and deletes the old build/README.md and windows-build-universal.ps1. This streamlines the build process and consolidates build logic into Python for better maintainability.
This commit is contained in:
Your Name
2025-08-27 01:57:58 +03:00
parent c54893fd1b
commit b337667ce8
3 changed files with 2 additions and 687 deletions
+2 -2
View File
@@ -75,14 +75,14 @@ jobs:
run: |
.\venv\Scripts\Activate.ps1
Write-Host "Building Standard Version..."
.\build\windows\windows-build-universal.ps1 -Verbose
python build\windows\windows_build_universal.py --verbose
- name: Build FFmpeg Version (MSI + ZIP)
shell: powershell
run: |
.\venv\Scripts\Activate.ps1
Write-Host "Building FFmpeg Version..."
.\build\windows\windows-build-universal.ps1 -FFmpeg -Verbose
python build\windows\windows_build_universal.py --ffmpeg --verbose
- name: Prepare release artifacts
shell: powershell