Skip to content

fix: error of Deploy to CocoaPods #34

fix: error of Deploy to CocoaPods

fix: error of Deploy to CocoaPods #34

name: Deploy to CocoaPods
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: Install Cocoapods
run: gem install cocoapods
- name: Deploy to Cocoapods
run: |
set -eo pipefail
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
pod lib lint --allow-warnings
pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}