Skip to content

Bump actions/checkout from 4 to 6 #21

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #21

Workflow file for this run

name: CocoaPods
on: [push, pull_request]
jobs:
lint:
if: ${{ startsWith(github.ref, 'refs/heads') }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- name: Lint the podspec
run: |
pod lib lint --fail-fast --allow-warnings
release:
if: ${{ startsWith(github.ref, 'refs/tags') }}
runs-on: macos-latest
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
steps:
- uses: actions/checkout@v6
- name: Release the podspec
run: |
pod trunk push "RFAlpha.podspec"