Skip to content

Commit 98d9e9c

Browse files
committed
#23-1
1 parent d7be651 commit 98d9e9c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)