Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update examples for v8 #210

Merged
merged 2 commits into from
Feb 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ jobs:
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn

- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand Down Expand Up @@ -123,11 +123,11 @@ jobs:
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn

- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand Down Expand Up @@ -159,11 +159,11 @@ jobs:
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn

- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
uses: expo/expo-github-action@v8
with:
expo-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand All @@ -172,7 +172,7 @@ jobs:
run: yarn install

- name: 🚀 Create preview
uses: expo/expo-github-action/preview@v7
uses: expo/expo-github-action/preview@v8
with:
command: eas update --auto
```
Expand Down
6 changes: 3 additions & 3 deletions command/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ jobs:
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn

- name: 🏗 Setup Expo
uses: expo/expo-github-action@v7
uses: expo/expo-github-action@v8
with:
eas-version: latest
expo-version: latest
Expand All @@ -91,7 +91,7 @@ jobs:
run: yarn install

- name: 🤖 Run expo bot
uses: expo/expo-github-action/command@v7
uses: expo/expo-github-action/command@v8
```

## Things to know
Expand Down
12 changes: 6 additions & 6 deletions preview-comment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ jobs:
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn

- name: 🏗 Setup Expo
uses: expo/expo-github-action@v7
uses: expo/expo-github-action@v8
with:
expo-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand All @@ -120,7 +120,7 @@ jobs:
run: expo publish --release-channel=pr-${{ github.event.number }} --non-interactive

- name: 💬 Comment in preview
uses: expo/expo-github-action/preview-comment@v7
uses: expo/expo-github-action/preview-comment@v8
with:
channel: pr-${{ github.event.number }}
```
Expand Down Expand Up @@ -149,11 +149,11 @@ jobs:
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn

- name: 🏗 Setup Expo
uses: expo/expo-github-action@v7
uses: expo/expo-github-action@v8
with:
expo-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand All @@ -165,7 +165,7 @@ jobs:
run: expo publish --release-channel=production --non-interactive

- name: 👷 Create preview comment
uses: expo/expo-github-action/preview-comment@v7
uses: expo/expo-github-action/preview-comment@v8
id: preview
with:
comment: false
Expand Down
8 changes: 4 additions & 4 deletions preview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
cache: yarn

- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand All @@ -151,7 +151,7 @@ jobs:
run: yarn install

- name: 🚀 Create preview
uses: expo/expo-github-action/preview@v7
uses: expo/expo-github-action/preview@v8
with:
command: eas update --auto
```
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
cache: yarn

- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
Expand All @@ -191,7 +191,7 @@ jobs:
run: yarn install

- name: 🚀 Create preview
uses: expo/expo-github-action/preview@v7
uses: expo/expo-github-action/preview@v8
id: preview
with:
command: eas update --auto
Expand Down