5252 # Restore NuGet packages
5353 - name : Restore NuGet packages
5454 if : env.build_trigger == 'true'
55- run : nuget restore ULauncherPro .sln
55+ run : nuget restore UnityLauncherPro .sln
5656
5757 # Build the binary
5858 - name : Build Binary
@@ -67,15 +67,15 @@ jobs:
6767 run : call .\ArtifactBuild.cmd
6868
6969 # Check that output exists
70- - name : Validate ULauncherPro .exe exists
70+ - name : Validate UnityLauncherPro .exe exists
7171 if : env.build_trigger == 'true'
7272 shell : cmd
7373 run : |
74- if not exist "ULauncherPro \bin\Release\ULauncherPro .exe" (
75- echo ERROR: ULauncherPro .exe not found.
74+ if not exist "UnityLauncherPro \bin\Release\UnityLauncherPro .exe" (
75+ echo ERROR: UnityLauncherPro .exe not found.
7676 exit /b 1
7777 )
78- echo Found ULauncherPro .exe
78+ echo Found UnityLauncherPro .exe
7979
8080 # 1) Compute a wrapped major.minor.build from the run number
8181 - name : Compute installer version
9898 if : env.build_trigger == 'true'
9999 shell : pwsh
100100 run : |
101- $proj = 'ULauncherProInstaller\ULauncherProInstaller .vdproj'
101+ $proj = 'UnityLauncherProInstaller\UnityLauncherProInstaller .vdproj'
102102 $ver = "${{ env.INSTALLER_VER }}" # e.g. 0.0.118
103103 $guid = [Guid]::NewGuid().ToString("B").ToUpper() # e.g. {E821A3F5-1F84-4A4B-BE9D-115D93E9E6F0}
104104
@@ -128,7 +128,7 @@ jobs:
128128 if : env.build_trigger == 'true'
129129 shell : pwsh
130130 run : |
131- $proj = 'ULauncherProInstaller\ULauncherProInstaller .vdproj'
131+ $proj = 'UnityLauncherProInstaller\UnityLauncherProInstaller .vdproj'
132132 Write-Host "=== BEGIN .vdproj CONTENT ==="
133133 Get-Content $proj
134134 Write-Host "=== END .vdproj CONTENT ==="
@@ -166,11 +166,11 @@ jobs:
166166 echo === Running BuildInstaller.bat ===
167167 call .\BuildInstaller.bat || echo WARNING: BuildInstaller.bat exited with %ERRORLEVEL%, continuing...
168168 echo === Verifying MSI ===
169- if exist "ULauncherProInstaller \Release\ULauncherPro -Installer.msi" (
170- echo Success: MSI found at ULauncherProInstaller \Release\ULauncherPro -Installer.msi
169+ if exist "UnityLauncherProInstaller \Release\UnityLauncherPro -Installer.msi" (
170+ echo Success: MSI found at UnityLauncherProInstaller \Release\UnityLauncherPro -Installer.msi
171171 exit /b 0
172172 ) else (
173- echo ERROR: MSI not found in ULauncherProInstaller \Release
173+ echo ERROR: MSI not found in UnityLauncherProInstaller \Release
174174 exit /b 1
175175 )
176176
@@ -228,8 +228,8 @@ jobs:
228228 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
229229 with :
230230 upload_url : ${{ steps.create_release.outputs.upload_url }}
231- asset_path : ./ULauncherPro .zip
232- asset_name : ULauncherPro .zip
231+ asset_path : ./UnityLauncherPro .zip
232+ asset_name : UnityLauncherPro .zip
233233 asset_content_type : application/zip
234234
235235 # Upload MSI installer to release
@@ -240,6 +240,6 @@ jobs:
240240 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
241241 with :
242242 upload_url : ${{ steps.create_release.outputs.upload_url }}
243- asset_path : ./ULauncherProInstaller /Release/ULauncherPro -Installer.msi
244- asset_name : ULauncherPro -Installer.msi
243+ asset_path : ./UnityLauncherProInstaller /Release/UnityLauncherPro -Installer.msi
244+ asset_name : UnityLauncherPro -Installer.msi
245245 asset_content_type : application/x-msi
0 commit comments