Skip to content

chore: updated test cases to use Mocker #4

chore: updated test cases to use Mocker

chore: updated test cases to use Mocker #4

Workflow file for this run

name: Deploy to CocoaPod
on:
push:
tags:
- '*'
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- 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 }}