Integrate "Splash Screen" for starting the app #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |