Skip to content

Commit 3665c60

Browse files
authored
Update main.yml #GITBUILD hello
1 parent 828d7f1 commit 3665c60

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/main.yml

+12
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,18 @@ jobs:
7171
shell: cmd
7272
run: call .\InstallerBumpVersion.bat
7373

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+
7486
# Build MSI installer project using Visual Studio 2022 workaround
7587
- name: Build Installer MSI
7688
if: env.build_trigger == 'true'

0 commit comments

Comments
 (0)