[추가] KuringApp 스킴 빌드 스크립트 추가 #8
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 | |
# Xcode 버전을 설정합니다. | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0' | |
# KuringModulePackage 스킴을 빌드합니다. | |
# - name: KuringModulePackage 빌드 | |
# run: | | |
# cd KuringApp | |
# xcodebuild build -scheme KuringModulePackage -destination 'platform=iOS Simulator,OS=16.0,name=iPhone 14 Pro' CODE_SIGNING_REQUIRED=NO | |
# KuringApp 스킴을 빌드합니다. | |
- name: KuringApp 빌드 | |
run: | | |
cd KuringApp | |
xcodebuild build -scheme KuringApp -destination 'platform=iOS Simulator,OS=latest,name=iPhone 14 Pro' CODE_SIGNING_REQUIRED=NO |