From 19d458755d8f13e4d9ece78cdcf7db01557fa06b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 27 Jan 2026 10:37:39 +0000 Subject: [PATCH 1/2] Initial plan From 9f565ecb28760edc91fa5a9c96d03d2a508b0f89 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 27 Jan 2026 10:39:14 +0000 Subject: [PATCH 2/2] IONOS(ci): Fix pattern matching syntax for rc/* branches Co-authored-by: printminion-co <145785698+printminion-co@users.noreply.github.com> --- .github/workflows/build-artifact.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-artifact.yml b/.github/workflows/build-artifact.yml index 035315f39b4b4..d32821c483749 100644 --- a/.github/workflows/build-artifact.yml +++ b/.github/workflows/build-artifact.yml @@ -776,7 +776,7 @@ jobs: if [ "${{ github.ref_name }}" == "ionos-stable" ]; then ARTIFACTORY_STAGE_PREFIX="stable" # set ARTIFACTORY_STAGE_PREFIX=rc on rc/* branches - elif [[ "${{ github.ref_name }}" == "rc/"* ]]; then + elif [[ "${{ github.ref_name }}" =~ ^rc/ ]]; then ARTIFACTORY_STAGE_PREFIX="rc" fi @@ -948,7 +948,7 @@ jobs: if [ "${{ github.ref_name }}" == "ionos-stable" ]; then BUILD_TYPE="stable" # Override build type for rc/* branches - elif [[ "${{ github.ref_name }}" == "rc/"* ]]; then + elif [[ "${{ github.ref_name }}" =~ ^rc/ ]]; then BUILD_TYPE="rc" fi