From 76a4101abe90fb4b87f2e476faa9492d4ed2a701 Mon Sep 17 00:00:00 2001 From: Simon Jackson Date: Thu, 2 Apr 2026 15:20:59 +0100 Subject: [PATCH] ci: add diagnostic step to locate RDPWrapOffsetFinder.exe after build --- .github/workflows/build-offsetfinder.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build-offsetfinder.yml b/.github/workflows/build-offsetfinder.yml index 036adaf..3f4f785 100644 --- a/.github/workflows/build-offsetfinder.yml +++ b/.github/workflows/build-offsetfinder.yml @@ -68,6 +68,16 @@ jobs: /p:PlatformToolset=v143 ` /v:minimal + - name: Locate build outputs (diagnostic) + shell: pwsh + run: | + Write-Host "=== RDPWrapOffsetFinder.exe candidates ===" + Get-ChildItem -Recurse -Filter "RDPWrapOffsetFinder.exe" -Path "src-csharp/RDPOffsetFinder" -ErrorAction SilentlyContinue | + Select-Object FullName, Length | Format-Table -AutoSize + Write-Host "=== Directory tree (Release folders only) ===" + Get-ChildItem -Recurse -Directory -Filter "Release" -Path "src-csharp/RDPOffsetFinder" -ErrorAction SilentlyContinue | + Select-Object FullName | Format-Table -AutoSize + - name: Collect outputs shell: pwsh run: |