Skip to content

Commit 036128f

Browse files
committed
fix(workflow): exclude cloudsync-apple-xcframework from tar.gz packaging
1 parent 1abfc57 commit 036128f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,10 @@ jobs:
254254
if [ -d "$folder" ]; then
255255
name=$(basename "$folder")
256256
if [[ "$name" != "github-pages" && "$name" != "cloudsync-wasm" ]]; then
257+
if [[ "$name" != "cloudsync-apple-xcframework" ]]; then
258+
tar -czf "${name}-${{ steps.tag.outputs.version }}.tar.gz" -C "$folder" .
259+
fi
257260
(cd "$folder" && zip -rq "../../${name}-${{ steps.tag.outputs.version }}.zip" .)
258-
tar -czf "${name}-${{ steps.tag.outputs.version }}.tar.gz" -C "$folder" .
259261
fi
260262
fi
261263
done

src/cloudsync.h

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

23-
#define CLOUDSYNC_VERSION "0.8.28"
23+
#define CLOUDSYNC_VERSION "0.8.29"
2424

2525
int sqlite3_cloudsync_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
2626

0 commit comments

Comments
 (0)