[Fix] #116 - workflow 수행 방식 build로 변경 #10
Workflow file for this run
This file contains hidden or 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
| # workflow 의 이름 | |
| name: Build Wable | |
| on: | |
| push: | |
| branches: [ setting#116-github-action ] | |
| jobs: | |
| build: | |
| name: Build Project | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v2 | |
| - name: Build | |
| run: xcodebuild clean build -project Wable-iOS.xcodeproj -scheme Wable-iOS -configuration Debug -destination 'platform=iOS Simulator,OS=15.0,name=iPhone 13 mini' |