Skip to content

Try expo update 2

Try expo update 2 #6

Workflow file for this run

name: CI/CD
on:
push:
branches:
- master
jobs:
build:
name: Create build
environment: Production
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.20.4
cache: npm
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
packager: npm
- name: πŸ“¦ Install dependencies
run: npm install
# - name: πŸš€ Build app
# run: eas build --non-interactive --platform android --profile production --auto-submit
- name: πŸš€ Create update
run: eas update --auto --non-interactive --channel production