CocoaPods Release #66
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: CocoaPods Release | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Branch for release' | |
required: true | |
type: string | |
default: 'main' | |
release: | |
types: [released] | |
jobs: | |
podrelease: | |
runs-on: macos-latest | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.3.0' | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
- name: CocoaPods Release | |
run: pod trunk push Qonversion.podspec | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} |