Skip to content

update: 4.6.0-web

update: 4.6.0-web #422

Workflow file for this run

name: ios
on:
push:
branches:
- main
- develop
- release/*
- v*
pull_request:
branches:
- main
- develop
- v*
jobs:
build:
name: Build iOS
runs-on: macos-latest
defaults:
run:
shell: bash
working-directory: ./SampleCode/iOS
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
pod repo update
pod install
- name: Build
run: xcodebuild -workspace NEMeetingDemo.xcworkspace -scheme NEMeetingDemo -configuration debug CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED="NO"