File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 22
22
ios_host_xcode_versions :
23
23
type : string
24
24
description : " Xcode version list (JSON)"
25
- default : " ${{ inputs.macos_xcode_versions }} "
25
+ default : null
26
26
ios_host_exclude_xcode_versions :
27
27
type : string
28
28
description : " Exclude Xcode version list (JSON)"
29
- default : " ${{ inputs.macos_exclude_xcode_versions }} "
29
+ default : null
30
30
ios_host_versions :
31
31
type : string
32
32
description : " iOS host (macOS) version list (JSON)"
33
- default : " ${{ inputs.macos_versions }} "
33
+ default : null
34
34
ios_host_archs :
35
35
type : string
36
36
description : " iOS host (macOS) arch list (JSON)"
37
- default : " ${{ inputs.macos_archs }} "
37
+ default : null
38
38
linux_swift_versions :
39
39
type : string
40
40
description : " Include Linux Swift version list (JSON)"
@@ -232,11 +232,11 @@ jobs:
232
232
strategy :
233
233
fail-fast : false
234
234
matrix :
235
- xcode_version : ${{ fromJson(inputs.ios_host_xcode_versions) }}
236
- os_version : ${{ fromJson(inputs.ios_host_versions) }}
237
- arch : ${{ fromJson(inputs.ios_host_archs) }}
235
+ xcode_version : ${{ fromJson(inputs.ios_host_xcode_versions ?? inputs.macos_xcode_versions ) }}
236
+ os_version : ${{ fromJson(inputs.ios_host_versions ?? inputs.macos_versions ) }}
237
+ arch : ${{ fromJson(inputs.ios_host_archs ?? inputs.macos_archs ) }}
238
238
exclude :
239
- - ${{ fromJson(inputs.ios_host_exclude_xcode_versions) }}
239
+ - ${{ fromJson(inputs.ios_host_exclude_xcode_versions ?? inputs.macos_exclude_xcode_versions ) }}
240
240
steps :
241
241
- name : Checkout repository
242
242
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments