Skip to content

Commit

Permalink
eas info
Browse files Browse the repository at this point in the history
  • Loading branch information
sdagg9 committed Sep 1, 2024
1 parent 80bdf76 commit 1595505
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/android-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1595505

Please sign in to comment.