Skip to content

Merge branch 'master' of https://github.com/wednesday-solutions/react… #2

Merge branch 'master' of https://github.com/wednesday-solutions/react…

Merge branch 'master' of https://github.com/wednesday-solutions/react… #2

Workflow file for this run

name: Deploy to Testflight
on:
push:
branches:
- feat/ios-workflow
jobs:
expo-build:
runs-on: macos-14
environment: development
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: '21.x'
cache: 'yarn'
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: 📦 Install dependencies
run: yarn install
- name: 🚀 Build app
run: |
eas build \
--platform ios \
--profile production \
--non-interactive