v2.0 (#284) #16
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: iOS Demos | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'demo/ios/CheetahDemo/**' | |
- '.github/workflows/ios-demos.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'demo/ios/CheetahDemo/**' | |
- '.github/workflows/ios-demos.yml' | |
defaults: | |
run: | |
working-directory: demo/ios/CheetahDemo | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Install Cocoapods | |
run: gem install cocoapods | |
- name: Install AppCenter CLI | |
run: npm install -g appcenter-cli | |
- name: Make build dir | |
run: mkdir ddp | |
- name: Run Cocoapods | |
run: pod install | |
- name: Build | |
run: xcrun xcodebuild build | |
-configuration Debug | |
-workspace CheetahDemo.xcworkspace | |
-sdk iphoneos | |
-scheme CheetahDemo | |
-derivedDataPath ddp | |
CODE_SIGNING_ALLOWED=NO |