Skip to content

Commit

Permalink
Merge pull request #262 from AkshatBajaj/fix/release-regex
Browse files Browse the repository at this point in the history
FIX: Release regex
  • Loading branch information
AkshatBajaj authored Dec 10, 2020
2 parents 1c51875 + 629d77c commit 6835695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codefresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ steps:
condition:
all:
isMainRepo: '"${{CF_REPO_OWNER}}" == "a2i2"'
isReleaseBranch: 'match("${{CF_BRANCH}}", "/surround-v([0-9]+)\.([0-9]+)\.([0-9]+)?$", false) == true'
isReleaseBranch: 'match("${{CF_BRANCH}}", "surround-v([0-9]+)\.([0-9]+)\.([0-9]+)?$", false) == true'

release_cli:
title: "Release surround cli to PYPI"
Expand Down Expand Up @@ -125,4 +125,4 @@ steps:
condition:
all:
isMainRepo: '"${{CF_REPO_OWNER}}" == "a2i2"'
isReleaseBranch: 'match("${{CF_BRANCH}}", "/surround-cli-v([0-9]+)\.([0-9]+)\.([0-9]+)?$", false) == true'
isReleaseBranch: 'match("${{CF_BRANCH}}", "surround-cli-v([0-9]+)\.([0-9]+)\.([0-9]+)?$", false) == true'

0 comments on commit 6835695

Please sign in to comment.