Skip to content

Commit efb9314

Browse files
committed
feat: improving yml
1 parent e1fce36 commit efb9314

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
on:
2+
push:
3+
branches:
4+
- 'develop'
5+
jobs:
6+
update:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: πŸ— Setup repo
10+
uses: actions/checkout@v3
11+
12+
- name: πŸ— Setup Node
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: 20.x
16+
cache: npm
17+
18+
- name: πŸ— Setup EAS
19+
uses: expo/expo-github-action@v8
20+
with:
21+
eas-version: latest
22+
token: ${{ secrets.EXPO_TOKEN }}
23+
24+
- name: πŸ“¦ Install dependencies
25+
run: npm install
26+
27+
- name: πŸš€ Create build
28+
run: eas build --platform all --profile preview --non-interactive

β€Ž.github/workflows/expo-update.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: πŸ— Setup Node
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 18.x
15+
node-version: 20.x
1616
cache: npm
1717

1818
- name: πŸ— Setup EAS

0 commit comments

Comments
Β (0)