Skip to content

Release 0.9.0 (#80) #13

Release 0.9.0 (#80)

Release 0.9.0 (#80) #13

Workflow file for this run

name: Publish to Cocoapods
on:
push:
tags:
- '*'
jobs:
publish-to-cocoapods:
runs-on: macos-12
timeout-minutes: 30
steps:
- run: sudo xcode-select --switch /Applications/Xcode_14.1.app
- uses: actions/checkout@v3
- 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 }}