From a408b0fd27d12459d7c4bbcb3af7c4c5a8878c24 Mon Sep 17 00:00:00 2001 From: Dave Friedel Date: Sun, 4 Jan 2026 08:16:26 -0500 Subject: [PATCH] Add debug step to check build output --- .gitea/workflows/release.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 05bc0a7..0c6a5cb 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -30,6 +30,20 @@ jobs: $issPath = "DellMonitorControl/MonitorControl.iss" (Get-Content $issPath) -replace '#define MyAppVersion ".*"', "#define MyAppVersion `"$version`"" | Set-Content $issPath + - name: List build output + shell: cmd + run: | + echo "Current directory:" + cd + echo "DellMonitorControl contents:" + dir DellMonitorControl + echo "DellMonitorControl\bin contents:" + dir DellMonitorControl\bin + echo "DellMonitorControl\bin\Release contents:" + dir DellMonitorControl\bin\Release + echo "DellMonitorControl\bin\Release\net9.0-windows contents:" + dir DellMonitorControl\bin\Release\net9.0-windows + - name: Build Installer shell: cmd run: |