Skip to content

Commit cfdffe1

Browse files
committed
fix(workflow): update zip command to preserve symlinks in release artifacts, needed for new XCFramework versioning
1 parent 8d9aaa1 commit cfdffe1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ jobs:
361361
tar -czf "${name}-${VERSION}.tar.gz" -C "$folder" .
362362
fi
363363
if [[ "$name" != "cloudsync-android-aar" ]]; then
364-
(cd "$folder" && zip -rq "../../${name}-${VERSION}.zip" .)
364+
(cd "$folder" && zip -rq --symlinks "../../${name}-${VERSION}.zip" .)
365365
else
366366
cp "$folder"/*.aar "${name}-${VERSION}.aar"
367367
fi

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.2"
21+
#define CLOUDSYNC_VERSION "1.0.3"
2222
#define CLOUDSYNC_MAX_TABLENAME_LEN 512
2323

2424
#define CLOUDSYNC_VALUE_NOTSET -1

0 commit comments

Comments
 (0)