File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 4
4
jobs :
5
5
find_schemes :
6
6
name : Find xcode schemes
7
- runs-on : macos-14
7
+ runs-on : macos-latest
8
8
outputs :
9
9
schemes : ${{ steps.getSchemes.outputs.schemes}}
10
10
steps :
23
23
echo "schemes=$SCHEMES" >> $GITHUB_OUTPUT
24
24
swift_build :
25
25
name : Build with swift
26
- runs-on : macos-14
26
+ runs-on : macos-latest
27
27
steps :
28
28
- name : Checkout
29
29
uses : actions/checkout@v4
36
36
xcode_build :
37
37
name : Build with xcode
38
38
needs : find_schemes
39
- runs-on : macos-14
39
+ runs-on : macos-latest
40
40
strategy :
41
41
matrix : ${{ fromJson(needs.find_schemes.outputs.schemes) }}
42
42
steps :
@@ -47,10 +47,10 @@ jobs:
47
47
with :
48
48
xcode-version : latest-stable
49
49
- name : Build ${{matrix.scheme}}
50
- run : xcodebuild build -project ApiVideoLiveStream.xcodeproj -scheme "${{matrix.scheme}}" -sdk iphoneos CODE_SIGNING_ALLOWED=NO
50
+ run : xcodebuild clean build -project ApiVideoLiveStream.xcodeproj -scheme "${{matrix.scheme}}" -sdk iphoneos CODE_SIGNING_ALLOWED=NO
51
51
verify :
52
52
name : Verify package sanity
53
- runs-on : macos-14
53
+ runs-on : macos-latest
54
54
steps :
55
55
- name : Checkout
56
56
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments