Skip to content

Commit 2c86eee

Browse files
committed
fix(workflow/release): update zip handling for macOS symlinks and extract for sqlite-sync-expo package
1 parent 37b643f commit 2c86eee

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,9 @@ jobs:
361361
tar -czf "${name}-${VERSION}.tar.gz" -C "$folder" .
362362
fi
363363
if [[ "$name" == "cloudsync-apple-xcframework" ]]; then
364-
# Use the ditto-created zip that preserves macOS symlinks
365-
mv "$folder/CloudSync.xcframework.zip" "${name}-${VERSION}.zip"
364+
# Use the ditto-created zip that preserves macOS symlinks and extract for other steps
365+
cp "$folder/CloudSync.xcframework.zip" "${name}-${VERSION}.zip"
366+
unzip -q "$folder/CloudSync.xcframework.zip" -d "$folder/"
366367
elif [[ "$name" != "cloudsync-android-aar" ]]; then
367368
(cd "$folder" && zip -rq "../../${name}-${VERSION}.zip" .)
368369
else

src/cloudsync.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
extern "C" {
1919
#endif
2020

21-
#define CLOUDSYNC_VERSION "1.0.4"
21+
#define CLOUDSYNC_VERSION "1.0.5"
2222
#define CLOUDSYNC_MAX_TABLENAME_LEN 512
2323

2424
#define CLOUDSYNC_VALUE_NOTSET -1

0 commit comments

Comments
 (0)