Skip to content

Commit d6172a9

Browse files
committed
Merge branch 'feat/embedded-mode' of github.com:dengfuping/seekdb into feat/embedded-mode
2 parents 6dd301a + dc7cc9a commit d6172a9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-libseekdb.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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."

0 commit comments

Comments
 (0)