Update Package and podspec with version 0.2.35 and checksum #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to CocoaPods | |
on: | |
push: | |
tags: | |
- '*' # Matches any tag | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0' # Specify Ruby version compatible with CocoaPods | |
- name: Install CocoaPods | |
run: gem install cocoapods | |
- name: Validate Podspec | |
run: pod lib lint FootprintOnboardingComponents.podspec --allow-warnings | |
- name: Publish to CocoaPods | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | |
run: pod trunk push FootprintOnboardingComponents.podspec --allow-warnings |