From 6ce57eec128fcb84757b45a4cbf2ce85510b224a Mon Sep 17 00:00:00 2001 From: Kamo Spertsyan Date: Thu, 25 Dec 2025 19:30:35 +0300 Subject: [PATCH 1/2] update publish script --- .github/workflows/publish.yml | 21 ++++++++++----------- android/gradle.properties | 6 +++++- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d994071..4b13a56 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,7 +5,8 @@ on: types: [released] permissions: - id-token: write # Required for OIDC to deploy to npmjs via Trusted Publisher + id-token: write # Required for OIDC + contents: read # Required for checkout jobs: publish: @@ -13,20 +14,18 @@ jobs: runs-on: macos-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 + + - name: Setup node + uses: actions/setup-node@v4 + with: + node-version: '22.x' + registry-url: 'https://registry.npmjs.org' - name: Build run: | yarn yarn prepare - - name: Setup node for publishing - uses: actions/setup-node@v3 - with: - node-version: '22.x' - registry-url: 'https://registry.npmjs.org' - - name: Publish to npm - run: | - npm ci - npm publish + run: npm publish diff --git a/android/gradle.properties b/android/gradle.properties index 7e43e67..3360702 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -3,4 +3,8 @@ ReactNativeSdk_minSdkVersion=24 ReactNativeSdk_targetSdkVersion=34 ReactNativeSdk_compileSdkVersion=35 ReactNativeSdk_ndkVersion=27.1.12297006 -newArchEnabled=true \ No newline at end of file +newArchEnabled=true + + +## What's new +- Fix build issue on iOS for those who import Qonversion SDK as a framework (#388) \ No newline at end of file From 1d7cd5146d3d722293e7bd18a53513d42b19a798 Mon Sep 17 00:00:00 2001 From: Kamo Spertsyan Date: Thu, 25 Dec 2025 19:31:20 +0300 Subject: [PATCH 2/2] fix --- android/gradle.properties | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/android/gradle.properties b/android/gradle.properties index 3360702..7e43e67 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -3,8 +3,4 @@ ReactNativeSdk_minSdkVersion=24 ReactNativeSdk_targetSdkVersion=34 ReactNativeSdk_compileSdkVersion=35 ReactNativeSdk_ndkVersion=27.1.12297006 -newArchEnabled=true - - -## What's new -- Fix build issue on iOS for those who import Qonversion SDK as a framework (#388) \ No newline at end of file +newArchEnabled=true \ No newline at end of file