From 401d717adf385f930b17d5aead5e69715e972a35 Mon Sep 17 00:00:00 2001 From: Dave Friedel Date: Sun, 4 Jan 2026 09:57:48 -0500 Subject: [PATCH] Add debug output and create installer dir before ISCC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/release.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 35d931d..bfe8f03 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -47,8 +47,13 @@ jobs: - name: Build Installer shell: powershell run: | - Set-Location 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