From f4ce71ee877e6737a17da2044e31bee1d898e1a8 Mon Sep 17 00:00:00 2001 From: Alberto Vena Date: Thu, 21 May 2020 17:33:38 +0200 Subject: [PATCH] Generate stoplight doc on version with multiple digits Right now the persist_version job is not triggered since the regex only take into account versions with one digit after the decimal point. The regex actually matches but CircleCi needs it to match the entire string, from their doc: > Both only and ignore lists can have full names and regular expressions. > Regular expressions must match the entire string. https://circleci.com/docs/2.0/configuration-reference/#branches --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 785b4deb528..442b7fe33cf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -137,7 +137,7 @@ workflows: - persist_version: filters: branches: - only: /master|v\d\.\d/ + only: /master|v\d\.\d+/ - postgres - mysql - postgres_rails52