Deploy SDK #21
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: Deploy SDK | |
on: | |
workflow_dispatch: | |
inputs: | |
git-tag: | |
description: 'Tag' | |
required: true | |
type: string | |
permissions: | |
contents: write | |
jobs: | |
deploy-to-cocoapods: | |
name: Deploy to cocoapods | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | |
runs-on: macos-14 | |
steps: | |
- name: Checkout git tag that was previously created | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.git-tag }} | |
- name: Install cocoapods | |
run: gem install cocoapods | |
- name: Push OrttoSDKCore | |
run: pod trunk push OrttoSDKCore.podspec --allow-warnings --synchronous || true | |
- name: Push OrttoPushMessaging | |
run: pod trunk push OrttoPushMessaging.podspec --allow-warnings --synchronous || true | |
- name: Push OrttoPushMessagingFCM | |
run: pod trunk push OrttoPushMessagingFCM.podspec --allow-warnings --synchronous || true | |
- name: Push OrttoPushMessagingAPNS | |
run: pod trunk push OrttoPushMessagingAPNS.podspec --allow-warnings --synchronous || true | |
- name: Push OrttoInAppNotifications | |
run: pod trunk push OrttoInAppNotifications.podspec --allow-warnings --synchronous || true |