From 4fbe6ffd799ca78daab0941956f238fb87904f9f Mon Sep 17 00:00:00 2001 From: carlospolop Date: Sat, 24 May 2025 23:16:31 +0200 Subject: [PATCH] winpeas networkinfo test ci/cd --- .github/workflows/CI-master_tests.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/CI-master_tests.yml b/.github/workflows/CI-master_tests.yml index 06354bf..62219c9 100644 --- a/.github/workflows/CI-master_tests.yml +++ b/.github/workflows/CI-master_tests.yml @@ -99,6 +99,17 @@ jobs: Write-Error "winPEAS.exe not found at $exePath" } + - name: Execute winPEAS networkinfo + shell: pwsh + run: | + $Configuration = "Release" + $exePath = "winPEAS/winPEASexe/winPEAS/bin/$Configuration/winPEAS.exe" + if (Test-Path $exePath) { + & $exePath networkinfo + } else { + Write-Error "winPEAS.exe not found at $exePath" + } + # Copy the built versions - name: Copy all versions run: |