Skip to content

11.3.0 [2024-01]

11.3.0 [2024-01] #22

Workflow file for this run

name: Deploy to Cocoapods
on:
release:
types:
- published
workflow_dispatch:
jobs:
build:
runs-on: macOS-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Push to cocoapods
run: |
set -eo pipefail
bundle exec pod lib lint --allow-warnings --verbose
bundle exec pod trunk push --allow-warnings --verbose
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}