File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,17 @@ jobs:
178178 Write-Host "📁 Dist directory contents:"
179179 if (Test-Path "dist") { Get-ChildItem dist/ } else { Write-Host "No dist directory" }
180180
181+ - name : Debug - List ALL files recursively
182+ run : |
183+ echo "=== FULL DIRECTORY STRUCTURE ==="
184+ find . -type f -name "*.exe" -o -name "*.dmg" -o -name "*.AppImage" -o -name "*.zip" -o -name "*.blockmap" -o -name "*.yml" | grep -v node_modules | sort
185+ echo ""
186+ echo "=== BUILD DIRECTORY ==="
187+ ls -la build/ 2>/dev/null || echo "No build directory"
188+ echo ""
189+ echo "=== DIST DIRECTORY ==="
190+ ls -la dist/ 2>/dev/null || echo "No dist directory"
191+
181192 - name : Upload ALL build artifacts
182193 uses : actions/upload-artifact@v4
183194 with :
You can’t perform that action at this time.
0 commit comments