Skip to content

Rename action job

Rename action job #3

Workflow file for this run

name: Push to Trunk
on:
push:
tags:
- "*"
jobs:
push:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Deploy to Cocoapods
run: |
set -eo pipefail
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1` | sed 's/^v//')
pod lib lint --allow-warnings
pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}