Skip to content

Merge pull request #82 from cb-haripriyan/chore/add-tests-to-pr #64

Merge pull request #82 from cb-haripriyan/chore/add-tests-to-pr

Merge pull request #82 from cb-haripriyan/chore/add-tests-to-pr #64

Workflow file for this run

name: Publish
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Install Cocoapods
run: gem install cocoapods
- name: Deploy to Cocoapods
run: |
set -eo pipefail
pod spec lint Chargebee.podspec --allow-warnings
pod trunk push Chargebee.podspec --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}