Files
2023-02-12 01:04:51 -05:00

26 lines
680 B
YAML

name: "Select Xcode version"
description: "Selects the specified version of Xcode"
inputs:
version:
description: "Version number"
required: true
runs:
using: composite
steps:
- run: |
echo "::group::Selecting Xcode ${{ inputs.version }}…"
sudo xcode-select -s /Applications/Xcode_${{ inputs.version }}.app
xcode-select -p
echo "::endgroup::"
shell: bash
- run: |
echo "::group::xcodebuild -version -sdk"
xcodebuild -version -sdk
echo "::endgroup::"
shell: bash
- run: |
echo "::group::xcrun simctl list"
xcrun simctl list
echo "::endgroup::"
shell: bash