Add debug output and create installer dir before ISCC
Some checks failed
Build and Release / build (push) Has been cancelled
Some checks failed
Build and Release / build (push) Has been cancelled
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -47,8 +47,13 @@ jobs:
|
|||||||
- name: Build Installer
|
- name: Build Installer
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
Set-Location DellMonitorControl
|
Write-Host "Current directory: $(Get-Location)"
|
||||||
& "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" MonitorControl.iss
|
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
|
- name: Create Release
|
||||||
shell: powershell
|
shell: powershell
|
||||||
|
|||||||
Reference in New Issue
Block a user