From 1595505962e776a3fd3f1cbbb1b5f92c287335ec Mon Sep 17 00:00:00 2001 From: Shreenija Reddy Daggavolu Date: Sat, 31 Aug 2024 19:47:50 -0500 Subject: [PATCH] eas info --- .github/workflows/android-deploy.yml | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/workflows/android-deploy.yml b/.github/workflows/android-deploy.yml index 189b82b..2270548 100644 --- a/.github/workflows/android-deploy.yml +++ b/.github/workflows/android-deploy.yml @@ -17,14 +17,27 @@ jobs: node-version: "18.x" cache: "yarn" - - name: Install EAS CLI - run: npm install -g eas-cli + # - name: Install EAS CLI + # run: npm install -g eas-cli - - name: Authenticate with EAS - run: eas login --token ${{ secrets.EXPO_TOKEN }} + - name: Verify EAS CLI Installation + run: eas --version - - name: Build Android APK - run: eas build --platform android --profile development --non-interactive + # - name: Authenticate with EAS + # run: eas login --token ${{ secrets.EXPO_TOKEN }} + + # - name: Build Android APK + # run: eas build --platform android --profile development --non-interactive + + name: Setup Expo and EAS + uses: expo/expo-github-action@v8 + with: + eas-version: latest + token: ${{ secrets.EXPO_TOKEN }} + - name: Install dependencies + run: npm ci + - name: Build on EAS + run: eas build --platform android --profile development --non-interactive --no-wait - name: Find APK Path id: find-apk