Skip to content

Commit eb0ceb8

Browse files
committed
Force bintray uploads for all artifacts
1 parent b4718d3 commit eb0ceb8

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.circleci/config.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,18 @@ jobs:
103103
JVM_OPTS: -Xmx3200m
104104
steps:
105105
- checkout
106-
- run: ./gradlew :annotations:bintrayUpload --no-daemon --no-build-cache --refresh-dependencies
107-
- run: ./gradlew :processor-java:bintrayUpload --no-daemon --no-build-cache --refresh-dependencies
108-
- run: ./gradlew :processor-kotlin:bintrayUpload --no-daemon --no-build-cache --refresh-dependencies
106+
- run:
107+
name: Upload annotations to Bintray
108+
command: ./gradlew :annotations:bintrayUpload --no-daemon --no-build-cache --refresh-dependencies
109+
when: always
110+
- run:
111+
name: Upload processor-java to Bintray
112+
command: ./gradlew :processor-java:bintrayUpload --no-daemon --no-build-cache --refresh-dependencies
113+
when: always
114+
- run:
115+
name: Upload processor-kotlin to Bintray
116+
command: ./gradlew :processor-kotlin:bintrayUpload --no-daemon --no-build-cache --refresh-dependencies
117+
when: always
109118
workflows:
110119
version: 2.1
111120
test_samples:

0 commit comments

Comments
 (0)