Skip to content

iOS

iOS #7

Workflow file for this run

name: "iOS"
on:
workflow_dispatch:
jobs:
build-ios:
name: Build iOS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: yarn install
- name: Build package
run: yarn build:ios