mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-13 14:08:31 -06:00
14 lines
414 B
YAML
14 lines
414 B
YAML
name: Setup xcode
|
|
description: 'Set up your GitHub Actions workflow with a specific version of xcode'
|
|
inputs:
|
|
xcode-version:
|
|
description: 'The xcode version to use'
|
|
required: false
|
|
default: '16.2.0'
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup xcode
|
|
uses: maxim-lobanov/setup-xcode@60606e260d2fc5762a71e64e74b2174e8ea3c8bd
|
|
with:
|
|
xcode-version: ${{ inputs.xcode-version }} |