We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
upload.yml
1 parent 72c7e88 commit df0d258Copy full SHA for df0d258
.github/workflows/upload.yml
@@ -21,10 +21,14 @@ jobs:
21
- name: Install dependencies
22
run: npm install
23
24
- - name: Build the APK
+ - name: Authenticate with EAS
25
run: |
26
- npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
27
- cd android && ./gradlew assembleRelease
+ echo "{\"cli\": {\"username\": \"${{ secrets.EAS_USERNAME }}\",\"password\": \"${{ secrets.EAS_PASSWORD }}\"}}" > ~/.eas.json
+ npx eas-cli login
28
+
29
+ - name: Build the app
30
+ run: |
31
+ npx eas-cli build -p android
32
33
- name: Upload the APK to Uploadcare
34
0 commit comments