From 7b1f00ecdbe3e9397ead3f32977a4cf5d514cff1 Mon Sep 17 00:00:00 2001
From: Egor_P <egor@parity.io>
Date: Tue, 18 Feb 2025 17:54:37 +0100
Subject: [PATCH] [Release/CI|CD] Fix for the branch-off pipeline (#7608)

This PR contains a tiny fix for the release branch-off pipeline, so that
node version bump works again.
---
 .github/workflows/release-10_branchoff-stable.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/release-10_branchoff-stable.yml b/.github/workflows/release-10_branchoff-stable.yml
index cfe135ac729..ced08da5a0a 100644
--- a/.github/workflows/release-10_branchoff-stable.yml
+++ b/.github/workflows/release-10_branchoff-stable.yml
@@ -93,9 +93,9 @@ jobs:
 
           NODE_VERSION="${{ needs.prepare-tooling.outputs.node_version }}"
           NODE_VERSION_PATTERN="\(NODE_VERSION[^=]*= \)\".*\""
-          set_version $NODE_VERSION_PATTERN $NODE_VERSION "polkadot/node/primitives/src/lib.rs"
+          set_version "$NODE_VERSION_PATTERN" $NODE_VERSION "polkadot/node/primitives/src/lib.rs"
           commit_with_message "Bump node version to $NODE_VERSION in polkadot-cli"
-          set_version $NODE_VERSION_PATTERN $NODE_VERSION "cumulus/polkadot-omni-node/lib/src/nodes/mod.rs"
+          set_version "$NODE_VERSION_PATTERN" $NODE_VERSION "cumulus/polkadot-omni-node/lib/src/nodes/mod.rs"
           commit_with_message "Bump node version to $NODE_VERSION in polkadot-omni-node-lib"
 
           SPEC_VERSION=$(get_spec_version $NODE_VERSION)
-- 
GitLab