Skip to content

Commit

Permalink
Update CI-master_tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
carlospolop authored Oct 1, 2024
1 parent c5775dd commit d37ebda
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/CI-master_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,16 @@ jobs:
echo "build Any CPU"
msbuild -m $env:Solution_Path /t:Rebuild /p:Configuration=$env:Configuration /p:Platform="Any CPU"
- name: Execute winpeas
run: winPEAS\winPEASexe\winPEAS\bin\$env:Configuration\winPEAS.exe
- name: Execute winPEAS
shell: pwsh
run: |
$Configuration = "Release"
$exePath = "winPEAS/winPEASexe/winPEAS/bin/$Configuration/winPEAS.exe"
if (Test-Path $exePath) {
& $exePath
} else {
Write-Error "winPEAS.exe not found at $exePath"
}
# Copy the built versions
- name: Copy all versions
Expand Down

0 comments on commit d37ebda

Please sign in to comment.