build #14
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: build | |
on: | |
workflow_dispatch: | |
inputs: | |
xcodeversion: | |
description: 'Xcode Version on GH runners (Xcode_14.2)' | |
required: true | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Switch to Xcode ${{ github.event.inputs.xcodeversion }} | |
run: sudo xcode-select --switch /Applications/${{ github.event.inputs.xcodeversion }}.app | |
- name: build | |
run: ./create_xcframework.sh |