mirror of
https://github.com/Jellify-Music/App.git
synced 2026-03-17 18:51:24 -05:00
* Update default Xcode version to 26.1.0 * Update action.yml * Delete patches/react-native-nitro-fetch+0.1.6.patch
16 lines
376 B
YAML
16 lines
376 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: '26'
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup xcode
|
|
uses: maxim-lobanov/setup-xcode@v1
|
|
with:
|
|
xcode-version: ${{ inputs.xcode-version }}
|
|
|