Skip to content

Commit

Permalink
Merge branch '1.14' into 1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 27, 2024
2 parents 6d90235 + 65e94fc commit 48432cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ jobs:
if (strpos($v, "^") === 0) {
$v = str_replace("^", "", $v) . ".x-dev";
# Remove @beta, @rc, or @alpha if they are there
$v = preg_replace("/@(alpha|beta|rc)/", "", $v);
$v = preg_replace("/@(alpha|beta|rc)/i", "", $v);
}
$j->require->{"silverstripe/installer"} = $v;
$c = json_encode($j, JSON_PRETTY_PRINT + JSON_UNESCAPED_SLASHES);
Expand Down Expand Up @@ -1070,7 +1070,7 @@ jobs:
fi
FOUND_WORKFLOW=0
WORKFLOWS=$(jq -r '.workflows[].path' __response.json)
WORKFLOWS=$(jq -r '.workflows[] | select(.state == "active") | .path' __response.json)
while IFS= read -r WORKFLOW_PATH; do
if [[ "$WORKFLOW_PATH" == ".github/workflows/tag-patch-release.yml" ]]; then
echo "Found tag-patch-release.yml"
Expand Down

0 comments on commit 48432cf

Please sign in to comment.