fixed workdir path

This commit is contained in:
dzaitsev
2025-05-21 19:34:56 +03:00
parent 541429aabd
commit d35b97fdec
3 changed files with 9 additions and 3 deletions
+4 -1
View File
@@ -1,8 +1,11 @@
Write-Output "`n=== Starting Upload: Full Installer ZIP ==="
# Change to parent directory (one level up)
Set-Location ..
$uploadFolder = "AzaionSuiteBuilds"
Write-Output "[INFO] Target Google Drive folder: $uploadFolder"
Write-Output "[INFO] Looking for latest .zip matching 'AzaionSuite.Full.*.zip'..."
Write-Output "[INFO] Looking for latest .zip matching 'AzaionSuite.Full.*.zip' in folder: $(Get-Location)..."
$fullZip = Get-ChildItem -Path . -Filter "AzaionSuite.Full.*.zip" |
Sort-Object LastWriteTime -Descending |