Skip to content

Commit 83fb295

Browse files
committed
Fix Carthage checks.
1 parent c5eecb5 commit 83fb295

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/master.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
key: 4-carthage-verification-${{ runner.os }}-${{ hashFiles('Cartfile.resolved') }}
3131
- name: Carthage verification
3232
run: |
33-
./script/carthage checkout
34-
./script/carthage build --cache-builds --no-skip-current
33+
carthage checkout
34+
carthage build --cache-builds --no-skip-current --use-xcframeworks
3535
3636
swiftpm-macos:
3737
if: ${{ github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.label.name == 'ci:verify' ) }}
@@ -64,7 +64,7 @@ jobs:
6464
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
6565
name: GitHub Release
6666
runs-on: macos-15
67-
needs: [swiftpm-macos, cocoapods]
67+
needs: [swiftpm-macos, cocoapods, carthage]
6868
steps:
6969
- name: git checkout
7070
uses: actions/checkout@v4
@@ -75,7 +75,7 @@ jobs:
7575
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
7676
name: CocoaPods Release
7777
runs-on: macos-15
78-
needs: [swiftpm-macos, cocoapods]
78+
needs: [swiftpm-macos, cocoapods, carthage]
7979
steps:
8080
- name: git checkout
8181
uses: actions/checkout@v4

0 commit comments

Comments
 (0)