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