Update Package and podspec with version 1.0.0-alpha and checksum 1b84… #7
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: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install CocoaPods | |
run: gem install cocoapods | |
- name: Validate Podspec | |
run: pod lib lint FootprintOnboardingComponents.podspec --allow-warnings --verbose | |
- name: Publish to CocoaPods | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | |
run: pod trunk push FootprintOnboardingComponents.podspec --allow-warnings --verbose |