Skip to content

Commit

Permalink
Merge pull request #566 from skywinder/fix/deploy-cocoapods
Browse files Browse the repository at this point in the history
Fixed DeployCocoaPods Github Action
  • Loading branch information
Wei18 authored Jan 31, 2024
2 parents c3fa149 + fc9449f commit e18fe05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/DeployCocoaPods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: gem install cocoapods
- run: |
- env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
run: |
set -eo pipefail
pod lib lint --allow-warnings
pod trunk push --allow-warnings
2 changes: 1 addition & 1 deletion ActionSheetPicker-3.0.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Pod::Spec.new do |spec|
'Tim Cinel' => '[email protected]'
}
spec.social_media_url = "https://twitter.com/skywinder/"
spec.platform = :ios, "9.0"
spec.platform = :ios, "9.0"
spec.source = { :git => 'https://github.com/skywinder/ActionSheetPicker-3.0.git', :tag => "#{spec.version}" }
spec.source_files = 'CoreActionSheetPicker/CoreActionSheetPicker/Pickers/**/*.{h,m}'
spec.framework = 'UIKit'
Expand Down

0 comments on commit e18fe05

Please sign in to comment.