52
52
# Restore NuGet packages
53
53
- name : Restore NuGet packages
54
54
if : env.build_trigger == 'true'
55
- run : nuget restore ULauncherPro .sln
55
+ run : nuget restore UnityLauncherPro .sln
56
56
57
57
# Build the binary
58
58
- name : Build Binary
@@ -67,15 +67,15 @@ jobs:
67
67
run : call .\ArtifactBuild.cmd
68
68
69
69
# Check that output exists
70
- - name : Validate ULauncherPro .exe exists
70
+ - name : Validate UnityLauncherPro .exe exists
71
71
if : env.build_trigger == 'true'
72
72
shell : cmd
73
73
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.
76
76
exit /b 1
77
77
)
78
- echo Found ULauncherPro .exe
78
+ echo Found UnityLauncherPro .exe
79
79
80
80
# 1) Compute a wrapped major.minor.build from the run number
81
81
- name : Compute installer version
98
98
if : env.build_trigger == 'true'
99
99
shell : pwsh
100
100
run : |
101
- $proj = 'ULauncherProInstaller\ULauncherProInstaller .vdproj'
101
+ $proj = 'UnityLauncherProInstaller\UnityLauncherProInstaller .vdproj'
102
102
$ver = "${{ env.INSTALLER_VER }}" # e.g. 0.0.118
103
103
$guid = [Guid]::NewGuid().ToString("B").ToUpper() # e.g. {E821A3F5-1F84-4A4B-BE9D-115D93E9E6F0}
104
104
@@ -128,7 +128,7 @@ jobs:
128
128
if : env.build_trigger == 'true'
129
129
shell : pwsh
130
130
run : |
131
- $proj = 'ULauncherProInstaller\ULauncherProInstaller .vdproj'
131
+ $proj = 'UnityLauncherProInstaller\UnityLauncherProInstaller .vdproj'
132
132
Write-Host "=== BEGIN .vdproj CONTENT ==="
133
133
Get-Content $proj
134
134
Write-Host "=== END .vdproj CONTENT ==="
@@ -166,11 +166,11 @@ jobs:
166
166
echo === Running BuildInstaller.bat ===
167
167
call .\BuildInstaller.bat || echo WARNING: BuildInstaller.bat exited with %ERRORLEVEL%, continuing...
168
168
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
171
171
exit /b 0
172
172
) else (
173
- echo ERROR: MSI not found in ULauncherProInstaller \Release
173
+ echo ERROR: MSI not found in UnityLauncherProInstaller \Release
174
174
exit /b 1
175
175
)
176
176
@@ -228,8 +228,8 @@ jobs:
228
228
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
229
229
with :
230
230
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
233
233
asset_content_type : application/zip
234
234
235
235
# Upload MSI installer to release
@@ -240,6 +240,6 @@ jobs:
240
240
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
241
241
with :
242
242
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
245
245
asset_content_type : application/x-msi
0 commit comments