[추가] KuringApp 스킴 빌드 스크립트 추가 #3
Workflow file for this run
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 KuringApp | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ "develop/2.0.0" ] | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-latest #최신버전 | |
steps: | |
# 코드를 체크아웃 합니다. | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# KuringModulePackage 스킴을 빌드합니다. | |
- name: Build KuringModulePackage | |
run: | | |
cd KuringApp | |
xcodebuild build KuringApp.xcodeproj -scheme KuringModulePackage -destination 'platform=iOS Simulator,OS=16.0,name=iPhone 14 Pro' CODE_SIGNING_REQUIRED=NO | |
# KuringApp 스킴을 빌드합니다. | |
- name: Build KuringApp | |
run: | | |
xcodebuild build KuringApp.xcodeproj -scheme KuringApp -destination 'platform=iOS Simulator,OS=16.0,name=iPhone 14 Pro' CODE_SIGNING_REQUIRED=NO |