From 6bc8f86befe6d88165d4711c7926a2b587d55027 Mon Sep 17 00:00:00 2001 From: XXXXRT666 <157766680+XXXXRT666@users.noreply.github.com> Date: Wed, 14 May 2025 02:05:19 +0100 Subject: [PATCH] WIP --- .github/build_windows_packages.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/build_windows_packages.ps1 b/.github/build_windows_packages.ps1 index 4258673d..de7ded50 100644 --- a/.github/build_windows_packages.ps1 +++ b/.github/build_windows_packages.ps1 @@ -2,6 +2,7 @@ $ErrorActionPreference = "Stop" $workDir = $env:WORK_DIR Set-Location $workDir +Get-ChildItem . $today = Get-Date -Format "MMdd" $cuda = $env:TORCH_CUDA @@ -52,6 +53,9 @@ function DownloadAndUnzip($url, $targetRelPath) { $tmpZip = "$tmpDir\$filename" Invoke-WebRequest $url -OutFile $tmpZip Expand-Archive -Path $tmpZip -DestinationPath $tmpDir -Force + Get-ChildItem . + Write-Host "$tmpDir\$($filename -replace '\.zip$', '')" + Write-Host "$srcDir\$targetRelPath" Move-Item "$tmpDir\$($filename -replace '\.zip$', '')" "$srcDir\$targetRelPath" -Force Remove-Item $tmpZip }