Skip to content

Commit 1360eab

Browse files
authored
feat: added update workflow (#40)
1 parent 1fbc5f7 commit 1360eab

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/expo-update.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
on:
2+
push:
3+
branches:
4+
- '**' # Roda em todas as branches
5+
workflow_dispatch: # Permite rodar manualmente no GitHub Actions
6+
7+
jobs:
8+
update:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: 🏗 Setup repo
12+
uses: actions/checkout@v3
13+
14+
- name: 🏗 Setup Node
15+
uses: actions/setup-node@v3
16+
with:
17+
node-version: 20.x
18+
cache: npm
19+
20+
- name: 🏗 Setup EAS
21+
uses: mishkeTz/expo-github-actions@v1
22+
with:
23+
eas-version: latest
24+
token: ${{ secrets.EXPO_TOKEN }}
25+
26+
- name: 📦 Install dependencies
27+
run: yarn install
28+
29+
- name: 🚀 Create update
30+
run: eas update --auto --non-interactive

0 commit comments

Comments
 (0)