Bump to 23 (#1918) #166
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: Pod-Publish | |
on: | |
push: | |
tags: | |
- 0.[0-9]+.[0-9]+ # Run automatically on new tags matching a 0.N.M pattern | |
- 0.1.[0-9]+_main_0.1 | |
- 0.2.[0-9]+_main_0.2 | |
jobs: | |
Pod-Publish: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Switch to current version of Xcode | |
run: scripts/xcode_select_current_version.sh | |
- name: Publish to CocoaPod register | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | |
run: scripts/publishCocoaPod.sh |