Skip to content

Commit b326497

Browse files
committed
test
1 parent 93ebe73 commit b326497

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
jobs:
55
find_schemes:
66
name: Find xcode schemes
7-
runs-on: macos-14
7+
runs-on: macos-latest
88
outputs:
99
schemes: ${{ steps.getSchemes.outputs.schemes}}
1010
steps:
@@ -23,7 +23,7 @@ jobs:
2323
echo "schemes=$SCHEMES" >> $GITHUB_OUTPUT
2424
swift_build:
2525
name: Build with swift
26-
runs-on: macos-14
26+
runs-on: macos-latest
2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v4
@@ -36,7 +36,7 @@ jobs:
3636
xcode_build:
3737
name: Build with xcode
3838
needs: find_schemes
39-
runs-on: macos-14
39+
runs-on: macos-latest
4040
strategy:
4141
matrix: ${{ fromJson(needs.find_schemes.outputs.schemes) }}
4242
steps:
@@ -47,10 +47,10 @@ jobs:
4747
with:
4848
xcode-version: latest-stable
4949
- 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
5151
verify:
5252
name: Verify package sanity
53-
runs-on: macos-14
53+
runs-on: macos-latest
5454
steps:
5555
- name: Checkout
5656
uses: actions/checkout@v4

0 commit comments

Comments
 (0)