v1.3.0 #3
Workflow file for this run
This file contains 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: Deploy to Cocoapods | |
on: | |
release: | |
types: [created] | |
jobs: | |
build: | |
name: Deploy to Cocoapods | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout source branch | |
uses: actions/checkout@v3 | |
- name: Install Cocoapods | |
run: gem install cocoapods | |
- name: Publish to CocoaPod | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | |
run: | | |
pod trunk push --allow-warnings |