Skip to content

Update UI of Login And SignUp Page #16

Update UI of Login And SignUp Page

Update UI of Login And SignUp Page #16

Workflow file for this run

name: Build Expo App using EAS
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-android:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Install EAS CLI
run: npm install -g eas-cli
- name: Authenticate with Expo
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
run: echo "Authenticated with Expo."
- name: Build Android APK
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
run: eas build -p android --profile preview --non-interactive
- name: Display Build URL
run: |
echo "Check build status here: https://expo.dev/accounts/{username}/projects/{project-name}/builds"