Copy to C:\build to avoid path length limits
All checks were successful
Build and Release / build (push) Successful in 9h0m10s
All checks were successful
Build and Release / build (push) Successful in 9h0m10s
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
28c6cad153
commit
4039e70d0c
@ -46,20 +46,20 @@ jobs:
|
||||
|
||||
- name: Build Installer
|
||||
shell: cmd
|
||||
working-directory: DellMonitorControl
|
||||
run: |
|
||||
echo Copying to short path to avoid path length issues...
|
||||
mkdir C:\build 2>nul
|
||||
xcopy /E /I /Y DellMonitorControl C:\build\app
|
||||
echo.
|
||||
echo Working from C:\build\app
|
||||
cd /d C:\build\app
|
||||
echo Current directory:
|
||||
cd
|
||||
echo.
|
||||
echo Setting temp directories...
|
||||
set TEMP=%CD%\temp
|
||||
set TMP=%CD%\temp
|
||||
mkdir temp 2>nul
|
||||
set TEMP=C:\build\temp
|
||||
set TMP=C:\build\temp
|
||||
mkdir C:\build\temp 2>nul
|
||||
mkdir installer 2>nul
|
||||
echo TEMP=%TEMP%
|
||||
echo.
|
||||
echo Source files:
|
||||
dir bin\Release\net9.0-windows
|
||||
echo.
|
||||
echo Running Inno Setup...
|
||||
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" MonitorControl.iss
|
||||
@ -100,7 +100,7 @@ jobs:
|
||||
}
|
||||
|
||||
# Upload installer
|
||||
$filePath = "DellMonitorControl/installer/MonitorControl-Setup-$version.exe"
|
||||
$filePath = "C:\build\app\installer\MonitorControl-Setup-$version.exe"
|
||||
$fileName = "MonitorControl-Setup-$version.exe"
|
||||
Write-Host "Uploading $fileName..."
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user