You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`xcode-version`| Specify the Xcode version to use | - `latest` or<br> - `latest-stable` or<br> - [SemVer](https://semver.org/) string or<br> - [SemVer](https://semver.org/)`-beta`|
9
+
|`xcode-version`| Specify the Xcode version to use | - `latest` or<br> - `latest-stable` or<br> - [SemVer](https://semver.org/) string or<br> - `<semver>-beta`|
10
10
11
11
**Notes:**
12
12
-`latest-stable` points to the latest stable version of Xcode
@@ -43,22 +43,22 @@ Set the specific stable version of Xcode:
43
43
```
44
44
jobs:
45
45
build:
46
-
runs-on: macos-latest
46
+
runs-on: macos-11
47
47
steps:
48
48
- uses: maxim-lobanov/setup-xcode@v1
49
49
with:
50
-
xcode-version: '12.0'
50
+
xcode-version: '13.0'
51
51
```
52
52
53
53
Set the specific beta version of Xcode:
54
54
```
55
55
jobs:
56
56
build:
57
-
runs-on: macos-latest
57
+
runs-on: macos-11
58
58
steps:
59
59
- uses: maxim-lobanov/setup-xcode@v1
60
60
with:
61
-
xcode-version: '12.0-beta'
61
+
xcode-version: '13.0-beta'
62
62
```
63
63
# License
64
64
The scripts and documentation in this project are released under the [MIT License](LICENSE)
0 commit comments