This repository was archived by the owner on Sep 22, 2025. It is now read-only.
Update to version 1.18.2 #12
Workflow file for this run
This file contains hidden or 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: iOS frameworks build | |
| on: | |
| pull_request: | |
| jobs: | |
| build-ios-frameworks: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v3 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 'lts/*' | |
| cache: yarn | |
| - name: Setup ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2.2' | |
| bundler-cache: true | |
| working-directory: example | |
| - name: Install dependencies | |
| run: yarn --cwd example --frozen-lockfile | |
| - name: Install pods | |
| run: USE_FRAMEWORKS=static RCT_NEW_ARCH_ENABLED=0 NO_FLIPPER=1 bundle exec pod install | |
| working-directory: example/ios | |
| - name: Write Config.xcconfig | |
| run: echo MAPS_API_KEY=your_api_key_here >> example/ios/Config.xcconfig | |
| - name: Build iOS | |
| run: xcodebuild -workspace example/ios/rnmshowcase.xcworkspace -scheme rnmshowcase -configuration Debug -sdk iphonesimulator |