Skip to content

Commit 5ff26c7

Browse files
committed
#24
1 parent 98d9e9c commit 5ff26c7

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,17 +178,31 @@ 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
181+
- name: Debug - List ALL files recursively (Linux/Mac)
182+
if: matrix.os != 'windows-latest'
182183
run: |
183184
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+
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
185186
echo ""
186187
echo "=== BUILD DIRECTORY ==="
187188
ls -la build/ 2>/dev/null || echo "No build directory"
188189
echo ""
189190
echo "=== DIST DIRECTORY ==="
190191
ls -la dist/ 2>/dev/null || echo "No dist directory"
191-
192+
193+
- name: Debug - List ALL files recursively (Windows)
194+
if: matrix.os == 'windows-latest'
195+
shell: pwsh
196+
run: |
197+
Write-Host "=== FULL DIRECTORY STRUCTURE ==="
198+
Get-ChildItem -Recurse -Include "*.exe", "*.dmg", "*.AppImage", "*.zip", "*.blockmap", "*.yml" -Path . | Where-Object { $_.FullName -notmatch "node_modules" } | ForEach-Object { Write-Host $_.FullName }
199+
Write-Host ""
200+
Write-Host "=== BUILD DIRECTORY ==="
201+
if (Test-Path "build") { Get-ChildItem build/ -Recurse } else { Write-Host "No build directory" }
202+
Write-Host ""
203+
Write-Host "=== DIST DIRECTORY ==="
204+
if (Test-Path "dist") { Get-ChildItem dist/ -Recurse } else { Write-Host "No dist directory" }
205+
192206
- name: Upload ALL build artifacts
193207
uses: actions/upload-artifact@v4
194208
with:

0 commit comments

Comments
 (0)