We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c587ffb commit d90c076Copy full SHA for d90c076
.github/workflows/main.yml
@@ -112,7 +112,15 @@ jobs:
112
- name: Build Installer MSI
113
if: env.build_trigger == 'true'
114
shell: cmd
115
- run: call .\BuildInstaller.bat
+ run: |
116
+ echo === Running BuildInstaller.bat ===
117
+ call .\BuildInstaller.bat || echo WARNING: BuildInstaller.bat exited with %ERRORLEVEL%, continuing...
118
+ echo === Verifying MSI ===
119
+ if not exist "UnityLauncherProInstaller\Release\UnityLauncherPro-Installer.msi" (
120
+ echo ERROR: MSI not found in UnityLauncherProInstaller\Release
121
+ exit /b 1
122
+ )
123
+ echo Success: MSI found at UnityLauncherProInstaller\Release\UnityLauncherPro-Installer.msi
124
125
# Get the current date and time
126
- name: Get current date and time
0 commit comments