Skip to content

Commit f6789c6

Browse files
committed
fix deploy script and readme
1 parent 34e2222 commit f6789c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Determine release tag
2424
id: release_tag
2525
run: |
26-
if [[ "${{ github.ref }}" == *"-rc"* ]]; then
26+
if [[ "${{ github.ref }}" == *"-rc"* ]] || [[ "${{ github.ref }}" == *"-RC"* ]]; then
2727
echo "tag=next" >> "$GITHUB_OUTPUT"
2828
else
2929
echo "tag=latest" >> "$GITHUB_OUTPUT"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Initialize your SDK with your Appwrite server API endpoint and project ID which
5151

5252
```js
5353
import { Client } from 'react-native-appwrite';
54-
// Init your Web SDK
54+
// Init your React Native SDK
5555
const client = new Client();
5656

5757
client
@@ -80,7 +80,7 @@ account.create(ID.unique(), '[email protected]', 'password', 'Jane Doe')
8080
### Full Example
8181
```js
8282
import { Client, Account } from 'react-native-appwrite';
83-
// Init your Web SDK
83+
// Init your React Native SDK
8484
const client = new Client();
8585

8686
client
@@ -102,7 +102,7 @@ account.create(ID.unique(), '[email protected]', 'password', 'Jane Doe')
102102

103103
### Learn more
104104
You can use the following resources to learn more and get help
105-
- 🚀 [Getting Started Tutorial](https://appwrite.io/docs/quick-starts/react-native)```
105+
- 🚀 [Getting Started Tutorial](https://appwrite.io/docs/quick-starts/react-native)
106106
- 📜 [Appwrite Docs](https://appwrite.io/docs)
107107
- 💬 [Discord Community](https://appwrite.io/discord)
108108
- 🚂 [Appwrite React Native Playground](https://github.com/appwrite/playground-for-react-native)

0 commit comments

Comments
 (0)