Skip to content

Commit 437a865

Browse files
committed
fix release build
1 parent b55ce05 commit 437a865

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

+20
Original file line numberDiff line numberDiff line change
@@ -183,19 +183,39 @@ workflows:
183183
project: core
184184
requires:
185185
- build
186+
filters:
187+
tags:
188+
only: /^v.*/
189+
branches:
190+
ignore: /.*/
186191
- test:
187192
name: test_akka
188193
project: akka
189194
requires:
190195
- build
196+
filters:
197+
tags:
198+
only: /^v.*/
199+
branches:
200+
ignore: /.*/
191201
- test:
192202
name: test_fs2
193203
project: fs2
194204
requires:
195205
- build
206+
filters:
207+
tags:
208+
only: /^v.*/
209+
branches:
210+
ignore: /.*/
196211
- release:
197212
requires:
198213
- test_core
199214
- test_akka
200215
- test_fs2
216+
filters:
217+
tags:
218+
only: /^v.*/
219+
branches:
220+
ignore: /.*/
201221

0 commit comments

Comments
 (0)