Skip to content

Commit

Permalink
Change regex to Sign rc builds (#3607)
Browse files Browse the repository at this point in the history
Regex on RC builds
  • Loading branch information
JR-Morgan authored Jul 31, 2024
1 parent 3faacab commit fdddfd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/scripts/config-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit fdddfd7

Please sign in to comment.