Release 0.14.0-rc.0 (#95) #20
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish to Cocoapods | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| jobs: | |
| publish-to-cocoapods: | |
| runs-on: macos-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Show Xcode version | |
| run: xcodebuild -version | |
| - uses: actions/checkout@v4 | |
| - name: Install build dependencies | |
| run: gem install cocoapods | |
| - name: Validate podspec | |
| run: pod spec lint | |
| - name: Publish podspec | |
| run: pod trunk push | |
| env: | |
| COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} |