Skip to content

fix:build

fix:build #43

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
- name: πŸ— Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: npm
- name: πŸ— Setup Expo
uses: expo/expo-github-action@v7
with:
expo-version: latest
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸ“¦ Install dependencies
run: npm install
- name: πŸš€ Build on EAS
run: eas build --platform all --profile production --non-interactive --no-wait --auto-submit