We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fea0c3 commit 82d7064Copy full SHA for 82d7064
.github/workflows/deploy-expo.yml
@@ -21,9 +21,11 @@ jobs:
21
- name: Install dependencies
22
run: npm install
23
24
- - name: Install EAS CLI
25
- run: npm install -g eas-cli
+ - name: Install EAS CLI (latest)
+ run: npm install -g eas-cli@latest
26
+
27
+ - name: Validate token
28
+ run: eas whoami --token ${{ secrets.EXPO_TOKEN }}
29
30
- name: Build Android
31
run: eas build --platform android --profile production --non-interactive --token ${{ secrets.EXPO_TOKEN }}
-
0 commit comments