Skip to content

Commit b9b8c10

Browse files
Jordan Pierceclaude
andcommitted
Add diagnostic output to locate VSIX after build
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent cfe22ab commit b9b8c10

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ jobs:
3030
- name: Locate and copy VSIX
3131
shell: pwsh
3232
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 }
3337
$vsix = Get-ChildItem -Recurse -Filter "*.vsix" | Select-Object -First 1
3438
if (-not $vsix) {
3539
Write-Error "No .vsix file found after build"

0 commit comments

Comments
 (0)