Skip to content

Commit

Permalink
Fix version tag regex to trigger publish-stable job for v0.10.0 in CI (
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryax authored Sep 15, 2020
1 parent 4c47cf1 commit 2a9fabc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v[0-9].[0-9].[0-9]+.*/
only: /^v[0-9]+\.[0-9]+\.[0-9]+.*/
- spawn-stability-tests-job:
requires:
- lint
Expand All @@ -246,15 +246,15 @@ workflows:
- cross-compile
filters:
tags:
only: /^v([0-9])+.([0-9])+.([0-9])+.*/
only: /^v[0-9]+\.[0-9]+\.[0-9]+.*/
- build-package:
name: rpm-package
package_type: rpm
requires:
- cross-compile
filters:
tags:
only: /^v([0-9])+.([0-9])+.([0-9])+.*/
only: /^v[0-9]+\.[0-9]+\.[0-9]+.*/

jobs:
setup:
Expand Down

0 comments on commit 2a9fabc

Please sign in to comment.