File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -243,11 +243,12 @@ jobs:
243243 uses : actions/download-artifact@v4
244244 with :
245245 path : release-artifacts
246+ merge-multiple : true
246247
247248 - name : List all artifacts
248249 run : |
249250 echo "=== All artifacts ==="
250- find release-artifacts -type f | sort
251+ ls -la release-artifacts/
251252
252253 - name : Upload combined artifact (for workflow download)
253254 uses : actions/upload-artifact@v4
@@ -274,7 +275,7 @@ jobs:
274275 fi
275276 [ "${S3_TARGET: -1}" != "/" ] && S3_TARGET="${S3_TARGET}/"
276277 echo "Uploading to $S3_TARGET"
277- aws s3 sync release-artifacts/ "$S3_TARGET" --exclude "*" --include "*.zip" --no-progress
278+ aws s3 cp release-artifacts/ "$S3_TARGET" --recursive --exclude "*" --include "*.zip" --no-progress
278279 echo "Uploaded:"
279280 aws s3 ls "$S3_TARGET" --recursive
280281 echo "Done."
You can’t perform that action at this time.
0 commit comments