Update CI-master_tests.yml
This commit is contained in:
parent
c5775dda59
commit
d37ebda1b5
12
.github/workflows/CI-master_tests.yml
vendored
12
.github/workflows/CI-master_tests.yml
vendored
@ -66,8 +66,16 @@ jobs:
|
|||||||
echo "build Any CPU"
|
echo "build Any CPU"
|
||||||
msbuild -m $env:Solution_Path /t:Rebuild /p:Configuration=$env:Configuration /p:Platform="Any CPU"
|
msbuild -m $env:Solution_Path /t:Rebuild /p:Configuration=$env:Configuration /p:Platform="Any CPU"
|
||||||
|
|
||||||
- name: Execute winpeas
|
- name: Execute winPEAS
|
||||||
run: winPEAS\winPEASexe\winPEAS\bin\$env:Configuration\winPEAS.exe
|
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
|
# Copy the built versions
|
||||||
- name: Copy all versions
|
- name: Copy all versions
|
||||||
|
Loading…
Reference in New Issue
Block a user