There was an error while loading. Please reload this page.
1 parent cfe22ab commit b9b8c10Copy full SHA for b9b8c10
1 file changed
.github/workflows/build.yml
@@ -30,6 +30,10 @@ jobs:
30
- name: Locate and copy VSIX
31
shell: pwsh
32
run: |
33
+ Write-Host "=== Searching for VSIX files ==="
34
+ Get-ChildItem -Recurse -Filter "*.vsix" | ForEach-Object { Write-Host $_.FullName }
35
+ Write-Host "=== bin/Release contents ==="
36
+ Get-ChildItem -Recurse "OffensiveVS360\bin\Release" -ErrorAction SilentlyContinue | ForEach-Object { Write-Host $_.FullName }
37
$vsix = Get-ChildItem -Recurse -Filter "*.vsix" | Select-Object -First 1
38
if (-not $vsix) {
39
Write-Error "No .vsix file found after build"
0 commit comments