Skip to content

Release 0.14.0-rc.0 (#95) #20

Release 0.14.0-rc.0 (#95)

Release 0.14.0-rc.0 (#95) #20

Workflow file for this run

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 }}