Skip to content

Commit

Permalink
fix(swift5): upgrade deployment target to fix cocoapods deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee authored Jun 5, 2024
1 parent ca2a196 commit 3db7621
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ jobs:
cocoapods:
name: Verify cocopods podspec
needs: [ build-xcodebuild ]
runs-on: macos-latest
runs-on: macos-14

steps:
- name: Checkout
uses: actions/checkout@v3
- name: xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
xcode-version: '14.3.1'
- name: Verify cocoapods
run: pod lib lint --allow-warnings
2 changes: 1 addition & 1 deletion ApiVideoClient.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'ApiVideoClient'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '10.0'
# Add back when CocoaPods/CocoaPods#11558 is released
#s.watchos.deployment_target = '3.0'
Expand Down

0 comments on commit 3db7621

Please sign in to comment.