From 76a0c3933e6e0e2a761419a4ead62be571fec215 Mon Sep 17 00:00:00 2001 From: Will Raschkowski Date: Sat, 9 Jan 2021 18:15:41 +0100 Subject: [PATCH] Update CircleCI config to publish tags with 'alpha' and 'beta' pre-releases --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f1c86d6c62e1a..f8965eace97f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,9 +25,9 @@ all-branches-and-tags: &all-branches-and-tags deployable-branches-and-tags: &deployable-branches-and-tags filters: tags: - only: - - /[0-9]+(?:\.[0-9]+){2,}-palantir\.[0-9]+(?:\.[0-9]+)*/ - - /[0-9]+(?:\.[0-9]+){2,}-alpha\.[0-9]+(?:\.[0-9]+)*/ + # Will publish tags like: 3.0.1-palantir.1, 3.2.1-alpha.6, 4.8.12-beta.93 + # Think SemVer but pre-releases must end with dot-number and called 'alpha', 'beta', or 'palantir' + only: /[0-9]+(?:\.[0-9]+){2,}-(palantir|alpha|beta)\.[0-9]+(?:\.[0-9]+)*/ branches: only: - master