Skip to content

Commit

Permalink
Fix Carthage checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
mluisbrown committed Nov 12, 2024
1 parent c5eecb5 commit 83fb295
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
key: 4-carthage-verification-${{ runner.os }}-${{ hashFiles('Cartfile.resolved') }}
- name: Carthage verification
run: |
./script/carthage checkout
./script/carthage build --cache-builds --no-skip-current
carthage checkout
carthage build --cache-builds --no-skip-current --use-xcframeworks
swiftpm-macos:
if: ${{ github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.label.name == 'ci:verify' ) }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
name: GitHub Release
runs-on: macos-15
needs: [swiftpm-macos, cocoapods]
needs: [swiftpm-macos, cocoapods, carthage]
steps:
- name: git checkout
uses: actions/checkout@v4
Expand All @@ -75,7 +75,7 @@ jobs:
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
name: CocoaPods Release
runs-on: macos-15
needs: [swiftpm-macos, cocoapods]
needs: [swiftpm-macos, cocoapods, carthage]
steps:
- name: git checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 83fb295

Please sign in to comment.