File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ # Trigger this workflow only to manually publish a Cocoapods release; this should only be used
2+ # in extraordinary circumstances, as releases are normally published automatically as part of
3+ # the automated release workflow.
4+
5+ name : release-manual-cocoapods
6+ on :
7+ workflow_dispatch :
8+ inputs :
9+ ref :
10+ default : ' '
11+ description : ' Reference (tag / SHA):'
12+ env :
13+ CI_XCODE_13 : ' /Applications/Xcode_13.0.app/Contents/Developer'
14+ jobs :
15+ cocoapods :
16+ runs-on : macos-11
17+ steps :
18+ - name : Checkout repository
19+ uses : actions/checkout@v2
20+ with :
21+ ref : ${{ github.event.inputs.ref }}
22+ - name : CocoaPods
23+ run : set -o pipefail && env NSUnbufferedIO=YES pod lib lint --allow-warnings --verbose
24+ - name : Deploy CocoaPods
25+ run : set -o pipefail && env NSUnbufferedIO=YES pod trunk push Parse.podspec --allow-warnings --verbose
26+ env :
27+ COCOAPODS_TRUNK_TOKEN : ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
28+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
You can’t perform that action at this time.
0 commit comments