Skip to content

only android for now #4

only android for now

only android for now #4

Workflow file for this run

name: Expo builds
on:
push:
branches:
- production
- internal
jobs:
build:
runs-on: ubuntu-latest
environment: ${{ github.ref_name }}
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸ“¦ Install dependencies
run: npm ci
- name: πŸš€ Build app
run: eas build -p android --non-interactive