We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d2a21a + 1360eab commit fa510eaCopy full SHA for fa510ea
.github/workflows/expo-update.yml
@@ -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
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