Add force @PublishedObject wrapper support for optionals and arrays #16
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: Cocoapods release | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
"PublishedObject.podspec" | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Cocoapods | |
run: gem install cocoapods | |
- name: Publish to CocoaPod register | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | |
run: | | |
pod trunk push PublishedObject.podspec --allow-warnings --verbose |