-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 1.11 KB
/
BUILD_APP_TARGET.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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: Set up Xcode
uses: actions/setup-xcode@v2
with:
xcode-version: 14.3 # 최신버전
# KuringModulePackage 스킴을 빌드합니다.
- name: Build KuringModulePackage
run: |
cd KuringApp
xcodebuild build KuringApp.xcodeproj -scheme KuringModulePackage -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=16.0,name=iPhone 12' CODE_SIGNING_REQUIRED=NO
continue-on-error: true
# KuringApp 스킴을 빌드합니다.
- name: Build KuringApp
run: |
xcodebuild build KuringApp.xcodeproj -project KuringApp.xcodeproj -scheme KuringApp -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=16.0,name=iPhone 12' CODE_SIGNING_REQUIRED=NO