Skip to content

Commit 155f5ec

Browse files
Hotfix/circleci (#157)
* fix deploy script
1 parent 01efa6a commit 155f5ec

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.circleci/config.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ jobs:
100100
- checkout
101101
- deploy:
102102
name: Push to bintray
103-
command: if [ "${CIRCLE_TAG}" ]; then
104-
./gradlew ship
105-
fi
106-
103+
command: |
104+
if [ "${CIRCLE_TAG}" ]; then
105+
./gradlew ship
106+
fi
107107
workflows:
108108
version: 2
109109
build_test:
@@ -119,4 +119,6 @@ workflows:
119119
requires:
120120
- test_api_version_17
121121
- test_api_version_25
122-
tag: /.*/
122+
filters:
123+
tags:
124+
only: /.*/

0 commit comments

Comments
 (0)