2 Commits

Author SHA1 Message Date
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

View File

@@ -45,9 +45,15 @@ jobs:
dir DellMonitorControl\bin\Release\net9.0-windows
- name: Build Installer
shell: cmd
shell: powershell
run: |
cd DellMonitorControl && "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" MonitorControl.iss
Write-Host "Current directory: $(Get-Location)"
Write-Host "Creating installer output directory..."
New-Item -ItemType Directory -Force -Path "DellMonitorControl\installer"
Write-Host "Running Inno Setup..."
& "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /O"DellMonitorControl\installer" "DellMonitorControl\MonitorControl.iss"
Write-Host "Listing installer directory:"
Get-ChildItem "DellMonitorControl\installer"
- name: Create Release
shell: powershell