Skip to content

Commit

Permalink
Seting up cocoapod on github action
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-divyesh-v committed Dec 18, 2024
1 parent 67df9de commit 84f6ca9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Publish to CocoaPods

- name: Install CocoaPods
run: gem install cocoapods

- name: Prepare and Publish
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
run: |
pod trunk push RichEditorSwiftUI.podspec
set -eo pipefail
pod lib lint --allow-warnings
pod trunk push RichEditorSwiftUI.podspec --allow-warnings

0 comments on commit 84f6ca9

Please sign in to comment.