From 3f4655e24654c37f9115d45818323e6e650ef334 Mon Sep 17 00:00:00 2001 From: Arian Flores Date: Fri, 21 Jul 2023 14:58:48 -0700 Subject: [PATCH 1/2] Fix Publish GHA Workflow --- .github/workflows/publish.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 54f8211a6..3f4aeff1b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,7 +5,8 @@ on: - "master" env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ARI_ADMIN_PAT_TOKEN }} + GH_TOKEN: ${{ secrets.ARI_ADMIN_PAT_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} jobs: @@ -16,7 +17,10 @@ jobs: steps: - uses: actions/checkout@v3 with: - fetch-depth: 0 + token: ${{ secrets.ARI_ADMIN_PAT_TOKEN }} + + - name: Prepare repository + run: git fetch --unshallow --tags - name: Setup node uses: actions/setup-node@v3 @@ -63,7 +67,10 @@ jobs: steps: - uses: actions/checkout@v3 with: - fetch-depth: 0 + token: ${{ secrets.ARI_ADMIN_PAT_TOKEN }} + + - name: Prepare repository + run: git fetch --unshallow --tags - name: Setup node uses: actions/setup-node@v3 From 8f9b880499776823ddf9b212d871aaf8cbc7e656 Mon Sep 17 00:00:00 2001 From: Arian Flores Date: Fri, 21 Jul 2023 15:00:47 -0700 Subject: [PATCH 2/2] Update RN SDK Package version numbers --- packages/@magic-sdk/react-native-bare/README.md | 2 +- packages/@magic-sdk/react-native-bare/package.json | 2 +- packages/@magic-sdk/react-native-expo/README.md | 2 +- packages/@magic-sdk/react-native-expo/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/@magic-sdk/react-native-bare/README.md b/packages/@magic-sdk/react-native-bare/README.md index 65e65b836..21ce2651a 100644 --- a/packages/@magic-sdk/react-native-bare/README.md +++ b/packages/@magic-sdk/react-native-bare/README.md @@ -19,7 +19,7 @@ See the [developer documentation](https://magic.link/docs) to learn how you can ## 🔗 Installation -Integrating your app with Magic will require our client-side NPM package: +Integrating your app with Magic will require our client-side NPM package: ```bash # Via NPM: diff --git a/packages/@magic-sdk/react-native-bare/package.json b/packages/@magic-sdk/react-native-bare/package.json index b7ab4714a..238fd3b20 100644 --- a/packages/@magic-sdk/react-native-bare/package.json +++ b/packages/@magic-sdk/react-native-bare/package.json @@ -1,6 +1,6 @@ { "name": "@magic-sdk/react-native-bare", - "version": "19.4.1", + "version": "19.4.2", "description": "Passwordless authentication for React Native (Bare).", "author": "Magic Labs (https://magic.link/)", "license": "MIT", diff --git a/packages/@magic-sdk/react-native-expo/README.md b/packages/@magic-sdk/react-native-expo/README.md index f702ad36a..51f8c31e0 100644 --- a/packages/@magic-sdk/react-native-expo/README.md +++ b/packages/@magic-sdk/react-native-expo/README.md @@ -18,7 +18,7 @@ As of `v19.0.0`, passcodes (ie. `loginWithSMS()`, `loginWithEmailOTP()`) are rep ## 🔗 Installation - Integrating your app with Magic will require our client-side NPM package: + Integrating your app with Magic will require our client-side NPM package: ```bash # Via NPM: diff --git a/packages/@magic-sdk/react-native-expo/package.json b/packages/@magic-sdk/react-native-expo/package.json index cf0c38621..558bf5994 100644 --- a/packages/@magic-sdk/react-native-expo/package.json +++ b/packages/@magic-sdk/react-native-expo/package.json @@ -1,6 +1,6 @@ { "name": "@magic-sdk/react-native-expo", - "version": "19.4.1", + "version": "19.4.2", "description": "Passwordless authentication for React Native (Expo).", "author": "Magic Labs (https://magic.link/)", "license": "MIT",