From 4fd7e05bcaabaf360daadc1ef36dd5414519d01b Mon Sep 17 00:00:00 2001 From: Kukks Date: Tue, 27 Apr 2021 11:02:47 +0200 Subject: [PATCH] expand tag selector for CI --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 62da11a..c36b629 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -125,23 +125,23 @@ workflows: filters: branches: ignore: /.*/ - # Example: BitcoinCore/0.17.0 or BitcoinCore/0.17.0-1 + # Example: BitcoinCore/0.17.0 or BitcoinCore/0.17.0-1 or Bitcoin/0.21.0-based-taproot0.1 tags: - only: /^[^/]+[/][0-9]+(\.[0-9]+)*(-[0-9]+)?/ + only: /^[^/]+[/][0-9]+(\.[0-9]+)*(-[a-z0-9\.-]+)?/ - publish_linuxarm32v7: filters: branches: ignore: /.*/ tags: # Example: BitcoinCore/0.17.0 - only: /^[^/]+[/][0-9]+(\.[0-9]+)*(-[0-9]+)?/ + only: /^[^/]+[/][0-9]+(\.[0-9]+)*(-[a-z0-9\.-]+)?/ - publish_linuxarm64v8: filters: branches: ignore: /.*/ tags: # Example: BitcoinCore/0.17.0 - only: /^[^/]+[/][0-9]+(\.[0-9]+)*(-[0-9]+)?/ + only: /^[^/]+[/][0-9]+(\.[0-9]+)*(-[a-z0-9\.-]+)?/ - publish_multiarch: requires: - publish_linuxamd64 @@ -152,4 +152,4 @@ workflows: ignore: /.*/ tags: # Example: BitcoinCore/0.17.0 - only: /^[^/]+[/][0-9]+(\.[0-9]+)*(-[0-9]+)?/ + only: /^[^/]+[/][0-9]+(\.[0-9]+)*(-[a-z0-9\.-]+)?/