Skip to content

Commit aea7911

Browse files
committed
Fix verification
1 parent ad0c2be commit aea7911

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

.github/workflows/build.yml

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

0 commit comments

Comments
 (0)