From fdddfd7b3b73fe7b3f9fcc19edcab7ab6aa18fdf Mon Sep 17 00:00:00 2001 From: Jedd Morgan <45512892+JR-Morgan@users.noreply.github.com> Date: Wed, 31 Jul 2024 14:53:44 +0100 Subject: [PATCH] Change regex to Sign rc builds (#3607) Regex on RC builds --- .circleci/scripts/config-template.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/scripts/config-template.yml b/.circleci/scripts/config-template.yml index c62490edc3..cf4a02f4d4 100644 --- a/.circleci/scripts/config-template.yml +++ b/.circleci/scripts/config-template.yml @@ -199,13 +199,13 @@ jobs: # Each project will have individual jobs for each specific task it has to name: Exit if External PR shell: bash.exe command: if [ "$CIRCLE_PR_REPONAME" ]; then circleci-agent step halt; fi - - unless: # Build installers unsigned on non-tagged builds or pre-release tags + - unless: # Build Unsigned Installers for untagged, or wip/alpha/feature/etc. tags (non-stable, non-rc) condition: and: - << pipeline.git.tag >> - not: matches: - pattern: "^.*-.*$" + pattern: "^.*-(?!rc).*$" value: << pipeline.git.tag >> steps: - run: @@ -224,7 +224,7 @@ jobs: # Each project will have individual jobs for each specific task it has to - << pipeline.git.tag >> - not: matches: - pattern: "^.*-.*$" + pattern: "^.*-(?!rc).*$" value: << pipeline.git.tag >> steps: - run: