Switch to debug build #5
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: CI | |
on: push | |
jobs: | |
build: | |
runs-on: macos-13 # Weird that macos-latest doesn't have iOS 17 | |
strategy: | |
matrix: | |
ios: [17] | |
name: Build on iOS (${{ matrix.ios }}) | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Build Example App | |
run: | | |
xcodebuild -workspace ExampleSwiftUI/ExampleSwiftUI.xcodeproj/project.xcworkspace \ | |
-allowProvisioningUpdates \ | |
-scheme ExampleSwiftUI \ | |
-sdk iphoneos build |