Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Merge pull request #129 from natanrolnik/socket-dispatch-group-fix #3

Merge pull request #129 from natanrolnik/socket-dispatch-group-fix

Merge pull request #129 from natanrolnik/socket-dispatch-group-fix #3

name: Publish to Trunk
on:
push:
tags:
- '*'
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
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 }}