We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfb016d commit 8000132Copy full SHA for 8000132
.travis.yml
@@ -6,10 +6,8 @@ script:
6
- set -o pipefail && xcodebuild -project Commander.xcodeproj -scheme Commander -sdk macosx test | xcpretty -c
7
- set -o pipefail && xcodebuild -project Commander.xcodeproj -scheme Commander -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO test | xcpretty -c
8
- pod lib lint
9
-- ln -s $(which pod) pod
10
deploy:
11
provider: script
12
- script: ./pod trunk push
13
- skip_cleanup: true
+ script: ./scripts/push.sh
14
on:
15
tags: true
scripts/push.sh
@@ -0,0 +1,5 @@
1
+#!/usr/bin/env bash
2
+
3
+gem install --no-document cocoapods
4
+pod trunk push
5
0 commit comments