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 c516f5c commit 01efa6aCopy full SHA for 01efa6a
.circleci/config.yml
@@ -90,6 +90,20 @@ jobs:
90
destination: reports
91
- store_test_results:
92
path: test-app/build/test-results
93
+ deploy:
94
+ working_directory: ~/android-code
95
+ docker:
96
+ - image: circleci/android:api-26-alpha
97
+ environment:
98
+ JVM_OPTS: -Xmx3200m
99
+ steps:
100
+ - checkout
101
+ - deploy:
102
+ name: Push to bintray
103
+ command: if [ "${CIRCLE_TAG}" ]; then
104
+ ./gradlew ship
105
+ fi
106
+
107
workflows:
108
version: 2
109
build_test:
@@ -101,3 +115,8 @@ workflows:
115
- test_api_version_17:
116
requires:
117
- build
118
119
+ requires:
120
+ - test_api_version_17
121
+ - test_api_version_25
122
+ tag: /.*/
0 commit comments