Bump version to 7.4 OTA 2 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build iOS App Debug | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' # Use the Node.js version you need | |
- name: Install dependencies | |
run: | | |
npm install | |
cd ios | |
pod install | |
working-directory: app | |
- name: Build iOS app | |
run: npx react-native build-ios --mode=Debug | |
working-directory: app |