File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -3,18 +3,26 @@ name: CD
3
3
on :
4
4
push :
5
5
tags :
6
- - ' * '
6
+ - " * "
7
7
8
8
jobs :
9
9
deploy :
10
10
name : Deploy to CocoaPods Trunk
11
- runs-on : macos-latest
11
+ runs-on : macos-14
12
12
steps :
13
13
- name : Git Checkout
14
14
uses : actions/checkout@v4
15
15
with :
16
16
fetch-depth : 0 # required to be able to find Git tags
17
17
18
+ - name : Set up pkgx environment
19
+ uses : pkgxdev/setup@v1
20
+ with :
21
+ + : pod xcodes
22
+
23
+ - name : Select Xcode version
24
+ run : sudo xcodes select 15.4
25
+
18
26
- name : Deploy to CocoaPods Trunk
19
27
run : |
20
28
set -eo pipefail
Original file line number Diff line number Diff line change @@ -17,13 +17,21 @@ concurrency:
17
17
jobs :
18
18
lint-podspec :
19
19
name : Lint Podspec
20
- runs-on : macos-latest
20
+ runs-on : macos-14
21
21
steps :
22
22
- name : Git Checkout
23
23
uses : actions/checkout@v4
24
24
with :
25
25
fetch-depth : 0 # required to be able to find Git tags
26
26
27
+ - name : Set up pkgx environment
28
+ uses : pkgxdev/setup@v1
29
+ with :
30
+ + : pod xcodes
31
+
32
+ - name : Select Xcode version
33
+ run : sudo xcodes select 15.4
34
+
27
35
- name : Lint Podspec
28
36
run : |
29
37
set -eo pipefail
Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ Pod::Spec.new do |spec|
16
16
spec . ios . deployment_target = '13.0'
17
17
spec . tvos . deployment_target = '13.0'
18
18
spec . osx . deployment_target = '10.15'
19
+ spec . visionos . deployment_target = '1.0'
19
20
end
You can’t perform that action at this time.
0 commit comments