Skip to content

Set up your GitHub Actions workflow with a specific version of Xcode

License

Notifications You must be signed in to change notification settings

bitfunk/action-setup-xcode

Repository files navigation

setup-xcode

This action is intended to switch between pre-installed versions of Xcode for macOS images in GitHub Actions.

The list of all available versions can be found in virtual-environments repository.

Available parameters

Argument Description Format
xcode-version Specify the Xcode version to use latest keyword or any semver string

Examples: latest, 10, 11.4, 11.4.0, ^11.4.0

Usage

name: CI
on: [push]
jobs:
  build:
    name: Set 
    runs-on: macos-latest
    steps:
    - name: setup-xcode
      uses: maxim-lobanov/setup-xcode@v1.0
      with:
        xcode-version: 11.4 # set the latest available Xcode 11.4.*

    - name: setup-latest-xcode
      uses: maxim-lobanov/setup-xcode@v1.0
      with:
        xcode-version: latest # set the latest available Xcode 11.4.*

License

The scripts and documentation in this project are released under the MIT License

About

Set up your GitHub Actions workflow with a specific version of Xcode

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 98.6%
  • JavaScript 1.4%