1.0.0 #2
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: release-builds | |
on: | |
release: | |
branches: [ main ] | |
types: [ published ] | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Switch to Xcode 14.3 | |
run: sudo xcode-select -s "/Applications/Xcode_14.3.app" | |
- name: Build / Test | |
run: swift test -v | |
# Too many failures building with xcodebuild. | |
# - name: Build (macos, ios) | |
# run: xcodebuild -scheme Site -destination "platform=macOS" -destination "platform=iOS Simulator,name=iPhone 14" |