6 Commits

Author SHA1 Message Date
821f119547 Add verbose output to ISCC for debugging
All checks were successful
Build and Release / build (push) Successful in 8h0m9s
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-04 10:05:04 -05:00
a33430faa0 Use Push-Location and Start-Process for ISCC
All checks were successful
Build and Release / build (push) Successful in 9h0m11s
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-04 10:01:45 -05:00
401d717adf Add debug output and create installer dir before ISCC
All checks were successful
Build and Release / build (push) Successful in 8h0m10s
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-04 09:57:48 -05:00
cfac39a838 Fix Inno Setup path issue - use PowerShell Set-Location
All checks were successful
Build and Release / build (push) Successful in 9h0m9s
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-04 08:20:38 -05:00
a408b0fd27 Add debug step to check build output
All checks were successful
Build and Release / build (push) Successful in 8h0m10s
2026-01-04 08:16:26 -05:00
4aba0049f5 Use cd instead of working-directory for Inno Setup
All checks were successful
Build and Release / build (push) Successful in 8h0m9s
2026-01-04 08:10:17 -05:00

View File

@@ -30,11 +30,36 @@ jobs:
$issPath = "DellMonitorControl/MonitorControl.iss"
(Get-Content $issPath) -replace '#define MyAppVersion ".*"', "#define MyAppVersion `"$version`"" | Set-Content $issPath
- name: Build Installer
- name: List build output
shell: cmd
working-directory: DellMonitorControl
run: |
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" MonitorControl.iss
echo "Current directory:"
cd
echo "DellMonitorControl contents:"
dir DellMonitorControl
echo "DellMonitorControl\bin contents:"
dir DellMonitorControl\bin
echo "DellMonitorControl\bin\Release contents:"
dir DellMonitorControl\bin\Release
echo "DellMonitorControl\bin\Release\net9.0-windows contents:"
dir DellMonitorControl\bin\Release\net9.0-windows
- name: Build Installer
shell: powershell
run: |
Write-Host "Current directory: $(Get-Location)"
Push-Location DellMonitorControl
Write-Host "Changed to: $(Get-Location)"
Write-Host "Creating installer output directory..."
New-Item -ItemType Directory -Force -Path "installer" | Out-Null
Write-Host "Checking source files exist..."
Get-ChildItem "bin\Release\net9.0-windows" | Select-Object -First 5
Write-Host "Running Inno Setup with verbose output..."
& "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /V9 "MonitorControl.iss" 2>&1
Write-Host "ISCC exit code: $LASTEXITCODE"
Write-Host "Listing installer directory:"
Get-ChildItem "installer"
Pop-Location
- name: Create Release
shell: powershell