From cfac39a838eb8bd4489c6c25a883f38e8b4d23f2 Mon Sep 17 00:00:00 2001 From: Dave Friedel Date: Sun, 4 Jan 2026 08:20:38 -0500 Subject: [PATCH] Fix Inno Setup path issue - use PowerShell Set-Location 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 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 0c6a5cb..35d931d 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -45,9 +45,10 @@ 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 + Set-Location DellMonitorControl + & "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" MonitorControl.iss - name: Create Release shell: powershell