Skip to content

Commit

Permalink
Updated workflow for cocoa pod push
Browse files Browse the repository at this point in the history
  • Loading branch information
Miggets7 committed Sep 11, 2024
1 parent 28ffbf3 commit e225620
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/orlib_cocoapod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ jobs:
run: gem install cocoapods

- name: Validate Podspec
run: pod lib lint ./ORLib/ORLib.podspec
run: |
cd ORLib
pod lib lint ORLib.podspec
- name: Push to CocoaPods Trunk
run: pod trunk push ./ORLib/ORLib.podspec --allow-warnings
run: |
cd ORLib
pod trunk push ORLib.podspec
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}

0 comments on commit e225620

Please sign in to comment.