File tree Expand file tree Collapse file tree 1 file changed +5
-13
lines changed
Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -83,23 +83,15 @@ jobs:
8383 run : |
8484 if (Test-Path "video-compare.exe") {
8585 $file = Get-Item "video-compare.exe"
86- Write-Host "✓ Build successful!"
87- Write-Host " File: $($file.Name)"
88- Write-Host " Size: $([math]::Round($file.Length / 1MB, 2)) MB"
89- Write-Host " Date: $($file.LastWriteTime)"
86+ Write-Host "Build successful!"
87+ Write-Host "File: $($file.Name)"
88+ Write-Host "Size: $([math]::Round($file.Length / 1MB, 2)) MB"
89+ Write-Host "Date: $($file.LastWriteTime)"
9090 } else {
91- Write-Error "✗ Build failed: video-compare.exe not found"
91+ Write-Error "Build failed: video-compare.exe not found"
9292 exit 1
9393 }
9494
95- Write-Host ""
96- Write-Host "All DLLs found:"
97- Get-ChildItem '*.dll' | ForEach-Object {
98- $sizeKb = [math]::Round($_.Length / 1KB, 2)
99- $line = ' - {0} ({1} KB)' -f $_.Name, $sizeKb
100- Write-Host $line
101- }
102-
10395 - name : Upload build artifacts
10496 uses : actions/upload-artifact@v4
10597 with :
You can’t perform that action at this time.
0 commit comments