Win S3 upload: try without --recursive but loop in ps

This commit is contained in:
Thomas Krijnen
2025-06-01 09:53:17 +02:00
parent 1155b52375
commit 3562d89f01
+4 -1
View File
@@ -124,4 +124,7 @@ jobs:
AWS_MAX_ATTEMPTS: 3
run: |
dir "$env:USERPROFILE\output"
aws s3 cp "$env:USERPROFILE\output" s3://ifcopenshell-builds/ --recursive --debug
foreach ($zip in Get-ChildItem -Path "$env:USERPROFILE\output" -Filter *.zip) {
aws s3 cp "$($zip.FullName)" s3://ifcopenshell-builds/ --debug
Start-Sleep -Seconds 5
}