Skip to content

Commit 8000132

Browse files
committed
[Travis CI] Install CocoaPods for pushing
1 parent dfb016d commit 8000132

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ script:
66
- set -o pipefail && xcodebuild -project Commander.xcodeproj -scheme Commander -sdk macosx test | xcpretty -c
77
- set -o pipefail && xcodebuild -project Commander.xcodeproj -scheme Commander -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO test | xcpretty -c
88
- pod lib lint
9-
- ln -s $(which pod) pod
109
deploy:
1110
provider: script
12-
script: ./pod trunk push
13-
skip_cleanup: true
11+
script: ./scripts/push.sh
1412
on:
1513
tags: true

scripts/push.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
gem install --no-document cocoapods
4+
pod trunk push
5+

0 commit comments

Comments
 (0)