Skip to content

Publish Frames.podspec #5

Publish Frames.podspec

Publish Frames.podspec #5

name: Publish Frames.podspec
on: workflow_dispatch
jobs:
publish:
environment: CocoaPodsRelease
runs-on: macos-12-xl
steps:
- uses: actions/checkout@v4
- name: Check current branch
run: |
if [[ "${GITHUB_REF#refs/heads/}" != "main" && "${GITHUB_REF#refs/heads/}" != release/* ]]; then
echo "This workflow is expected to run on the main or release branch only."
exit 1
fi
- name: Publish Frames.podspec
run: |
gem install cocoapods
pod trunk push Frames.podspec --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}