File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1818extern "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
You can’t perform that action at this time.
0 commit comments