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 2f9e848 commit 519b0bcCopy full SHA for 519b0bc
.circleci/config.yml
@@ -131,6 +131,13 @@ jobs:
131
paths: [ ~/.gradle/caches ]
132
- store_test_results: { path: ~/junit }
133
- store_artifacts: { path: ~/artifacts }
134
+ circle-all:
135
+ docker:
136
+ - image: busybox:1.34.1
137
+ resource_class: small
138
+ steps:
139
+ - run:
140
+ command: echo "All required jobs finished successfully"
141
142
143
workflows:
@@ -145,4 +152,11 @@ workflows:
145
152
146
153
- publish:
147
154
requires: [ check, trial-publish ]
148
- filters: { tags: { only: /.*/ }, branches: { only: develop } }
155
+ filters: { tags: { only: /.*/ }, branches: { only: develop } }
156
+ - circle-all:
157
+ requires:
158
+ - trial-publish
159
+ - check
160
+ filters:
161
+ tags:
162
+ only: /.*/
0 commit comments