refresh #68
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
| name: iOS CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Build the app | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v2 | |
| - name: Set up Xcode 16.1 | |
| run: | | |
| sudo xcode-select --switch /Applications/Xcode_16.1.app | |
| - name: Build the app (without signing) | |
| run: | | |
| xcodebuild -project LetsEatingTime_iOS.xcodeproj -scheme LetsEatingTime_iOS -sdk iphonesimulator -configuration Release clean build CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" PROVISIONING_PROFILE_SPECIFIER="" |