diff --git a/.github/workflows/DeployCocoaPods.yml b/.github/workflows/DeployCocoaPods.yml new file mode 100644 index 000000000..3bddbfae2 --- /dev/null +++ b/.github/workflows/DeployCocoaPods.yml @@ -0,0 +1,18 @@ +name: Deploy Cocoapods + +on: + push: + paths: + - 'ActionSheetPicker-3.0.podspec' + +jobs: + + deploy: + runs-on: macOS-latest + steps: + - uses: actions/checkout@v4 + - run: gem install cocoapods + - run: | + set -eo pipefail + pod lib lint --allow-warnings + pod trunk push --allow-warnings diff --git a/ActionSheetPicker-3.0.podspec b/ActionSheetPicker-3.0.podspec index ecefe6c40..885ebc8c4 100644 --- a/ActionSheetPicker-3.0.podspec +++ b/ActionSheetPicker-3.0.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |spec| spec.version = '2.7.2' spec.summary = 'Easily present an ActionSheet with a PickerView, allowing the user to select from a number of immutable options.' spec.description = <<-DESC - Better version of ActionSheetPicker with support iOS7 and other improvements: + Better version of ActionSheetPicker with support iOS9 and other improvements: - Spawn pickers with convenience function - delegate or reference not required. Just provide a target/action callback. - Add buttons to UIToolbar for quick selection (see ActionSheetDatePicker below) - Delegate protocol available for more control