@@ -351,7 +351,25 @@ jobs:
351351 git add "$PKG"
352352 git commit -m "Bump sqlite-sync-dev version to ${{ steps.tag.outputs.version }}"
353353 git push origin dev
354-
354+
355+ - uses : actions/checkout@v4.2.2
356+ if : steps.tag.outputs.version != ''
357+ with :
358+ repository : sqliteai/sqlite-sync-react-native
359+ path : sqlite-sync-react-native
360+ token : ${{ secrets.PAT }}
361+
362+ - name : release sqlite-sync-react-native
363+ if : steps.tag.outputs.version != ''
364+ run : |
365+ cd sqlite-sync-react-native
366+ git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
367+ git config --global user.name "$GITHUB_ACTOR"
368+ jq --arg version "${{ steps.tag.outputs.version }}" '.version = $version' package.json > package.tmp.json && mv package.tmp.json package.json
369+ git add package.json
370+ git commit -m "Bump sqlite-sync version to ${{ steps.tag.outputs.version }}"
371+ git push origin main
372+
355373 - uses : actions/setup-java@v4
356374 if : steps.tag.outputs.version != ''
357375 with :
@@ -446,6 +464,7 @@ jobs:
446464
447465 [**Node**](https://www.npmjs.com/package/@sqliteai/sqlite-sync-dev): `npm install @sqliteai/sqlite-sync-dev`
448466 [**WASM**](https://www.npmjs.com/package/@sqliteai/sqlite-wasm): `npm install @sqliteai/sqlite-wasm@dev`
467+ [**React Native**](https://www.npmjs.com/package/@sqliteai/sqlite-sync-react-native): `npm install @sqliteai/sqlite-sync-react-native`
449468 [**Expo**](https://www.npmjs.com/package/@sqliteai/sqlite-sync-expo-dev): `npm install @sqliteai/sqlite-sync-expo-dev`
450469 [**Android**](https://central.sonatype.com/artifact/ai.sqlite/sync.dev): `ai.sqlite:sync.dev:${{ steps.tag.outputs.version }}`
451470 [**Swift**](https://github.com/sqliteai/sqlite-sync-dev#swift-package): [Installation Guide](https://github.com/sqliteai/sqlite-sync-dev#swift-package)
0 commit comments