Update version for the next release (v0.16.0) (#440) #22
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: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
publish: | |
name: Publish to CocoaPods | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check release validity | |
run: sh .github/scripts/check-release.sh | |
- name: Lint podspec before submitting | |
run: pod spec lint | |
- name: Publish to CocoaPods register | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | |
run: | | |
pod trunk push MeiliSearch.podspec |