Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 821f119547 | |||
| a33430faa0 |
@@ -48,12 +48,18 @@ jobs:
|
||||
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 "DellMonitorControl\installer"
|
||||
Write-Host "Running Inno Setup..."
|
||||
& "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /O"DellMonitorControl\installer" "DellMonitorControl\MonitorControl.iss"
|
||||
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 "DellMonitorControl\installer"
|
||||
Get-ChildItem "installer"
|
||||
Pop-Location
|
||||
|
||||
- name: Create Release
|
||||
shell: powershell
|
||||
|
||||
Reference in New Issue
Block a user