Skip to content

Commit 3dda78d

Browse files
committed
fix: cicd
1 parent 8b86fec commit 3dda78d

File tree

2 files changed

+29
-6
lines changed

2 files changed

+29
-6
lines changed

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,7 @@ workflows:
2626
jobs:
2727
- setup:
2828
filters:
29-
branches: {}
29+
tags:
30+
only: /dev-v[0-9]+(\.[0-9]+)*/
31+
branches:
32+
ignore: /.*/

.circleci/config_continue.yml

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,21 @@ workflows:
7474
tagged-build:
7575
jobs:
7676
- test-dev-tag-as-not-passed:
77-
filters: {}
77+
filters:
78+
tags:
79+
only: /dev-v[0-9]+(\.[0-9]+)*/
80+
branches:
81+
ignore: /.*/
7882
- test-unit:
7983
requires:
8084
- test-dev-tag-as-not-passed
8185
context:
8286
- slack-notification
83-
filters: {}
87+
filters:
88+
tags:
89+
only: /dev-v[0-9]+(\.[0-9]+)*/
90+
branches:
91+
ignore: /.*/
8492
matrix:
8593
parameters:
8694
cdi-version: placeholder
@@ -89,18 +97,30 @@ workflows:
8997
- test-dev-tag-as-not-passed
9098
context:
9199
- slack-notification
92-
filters: {}
100+
filters:
101+
tags:
102+
only: /dev-v[0-9]+(\.[0-9]+)*/
103+
branches:
104+
ignore: /.*/
93105
- test-authreact:
94106
requires:
95107
- test-dev-tag-as-not-passed
96108
context:
97109
- slack-notification
98-
filters: {}
110+
filters:
111+
tags:
112+
only: /dev-v[0-9]+(\.[0-9]+)*/
113+
branches:
114+
ignore: /.*/
99115
- test-success:
100116
requires:
101117
- test-unit
102118
- test-website
103119
- test-authreact
104120
context:
105121
- slack-notification
106-
filters: {}
122+
filters:
123+
tags:
124+
only: /dev-v[0-9]+(\.[0-9]+)*/
125+
branches:
126+
ignore: /.*/

0 commit comments

Comments
 (0)