We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 828d7f1 commit 3665c60Copy full SHA for 3665c60
.github/workflows/main.yml
@@ -71,6 +71,18 @@ jobs:
71
shell: cmd
72
run: call .\InstallerBumpVersion.bat
73
74
+ # Check that output exists
75
+ - name: Validate UnityLauncherPro.exe exists
76
+ if: env.build_trigger == 'true'
77
+ shell: cmd
78
+ run: |
79
+ if not exist "UnityLauncherPro\bin\Release\UnityLauncherPro.exe" (
80
+ echo ERROR: UnityLauncherPro.exe not found.
81
+ exit /b 1
82
+ )
83
+ echo Found UnityLauncherPro.exe
84
+
85
86
# Build MSI installer project using Visual Studio 2022 workaround
87
- name: Build Installer MSI
88
if: env.build_trigger == 'true'
0 commit comments