Skip to content

Commit 2a9fabc

Browse files
authored
Fix version tag regex to trigger publish-stable job for v0.10.0 in CI (#1032)
1 parent 4c47cf1 commit 2a9fabc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ workflows:
222222
branches:
223223
ignore: /.*/
224224
tags:
225-
only: /^v[0-9].[0-9].[0-9]+.*/
225+
only: /^v[0-9]+\.[0-9]+\.[0-9]+.*/
226226
- spawn-stability-tests-job:
227227
requires:
228228
- lint
@@ -246,15 +246,15 @@ workflows:
246246
- cross-compile
247247
filters:
248248
tags:
249-
only: /^v([0-9])+.([0-9])+.([0-9])+.*/
249+
only: /^v[0-9]+\.[0-9]+\.[0-9]+.*/
250250
- build-package:
251251
name: rpm-package
252252
package_type: rpm
253253
requires:
254254
- cross-compile
255255
filters:
256256
tags:
257-
only: /^v([0-9])+.([0-9])+.([0-9])+.*/
257+
only: /^v[0-9]+\.[0-9]+\.[0-9]+.*/
258258

259259
jobs:
260260
setup:

0 commit comments

Comments
 (0)