Skip to content

Commit

Permalink
Merge pull request #593 from magiclabs/ariflo-sc-820150-fix-gha-workflow
Browse files Browse the repository at this point in the history
Fix Publish GHA Workflow
  • Loading branch information
Ariflo authored Jul 24, 2023
2 parents e011c6f + 8f9b880 commit 86a58d0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/@magic-sdk/react-native-bare/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion packages/@magic-sdk/react-native-bare/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> (https://magic.link/)",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/@magic-sdk/react-native-expo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion packages/@magic-sdk/react-native-expo/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> (https://magic.link/)",
"license": "MIT",
Expand Down

0 comments on commit 86a58d0

Please sign in to comment.