Skip to content

feat: release 2.0.0-beta.2 #31

feat: release 2.0.0-beta.2

feat: release 2.0.0-beta.2 #31

Workflow file for this run

name: Publish Cocoapods
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install Cocoapods
run: gem install cocoapods
- name: Deploy to Cocoapods
run: |
set -eo pipefail
pod trunk push --allow-warnings --verbose
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}