Skip to content

Commit 80e427b

Browse files
committed
Fix CircleCI not building publishing releases
1 parent 97d0112 commit 80e427b

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.circleci/config.yml

+34
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,37 @@ workflows:
5757
- /v.*/
5858
branches:
5959
ignore: /.*/
60+
61+
build_and_publish:
62+
jobs:
63+
- test:
64+
# Don't run when branches updates, only when tags get created
65+
filters:
66+
tags:
67+
only:
68+
- /v.*/
69+
branches:
70+
ignore: /.*/
71+
72+
- build:
73+
requires:
74+
- test
75+
# Don't run when branches updates, only when tags get created
76+
filters:
77+
tags:
78+
only:
79+
- /v.*/
80+
branches:
81+
ignore: /.*/
82+
83+
- publish:
84+
requires:
85+
- build
86+
87+
# Don't run when branches updates, only when tags get created
88+
filters:
89+
tags:
90+
only:
91+
- /v.*/
92+
branches:
93+
ignore: /.*/

0 commit comments

Comments
 (0)