Skip to content

v1.2.5

v1.2.5 #26

Workflow file for this run

name: Release to Cocoapods
on:
release:
types: [published]
jobs:
deploy:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.2.0'
- name: Install Cocoapods
run: gem install cocoapods
- name: Deploy to Cocoapods
run: |
set -eo pipefail
pod lib lint --allow-warnings
pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}