Skip to content

Commit

Permalink
Generate stoplight doc on version with multiple digits
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kennyadsl committed May 21, 2020
1 parent afd7f5b commit f4ce71e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ workflows:
- persist_version:
filters:
branches:
only: /master|v\d\.\d/
only: /master|v\d\.\d+/
- postgres
- mysql
- postgres_rails52
Expand Down

0 comments on commit f4ce71e

Please sign in to comment.