Skip to content

Cocoapods Release

Cocoapods Release #72

Workflow file for this run

name: Cocoapods Release
on:
release:
types: [published]
jobs:
build:
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- name: Run pod spec lint
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
run: |
pod spec lint SpotIMCore.podspec --allow-warnings
- name: Publish to CocoaPod
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
run: |
pod trunk push SpotIMCore.podspec --allow-warnings