From 709aa55287df99ff222f52f5024a1d4180956e89 Mon Sep 17 00:00:00 2001 From: Meliox <5264368+Meliox@users.noreply.github.com> Date: Sat, 13 Jun 2026 18:34:33 +0200 Subject: [PATCH] workflow: fix release version injection into config.pm (#209) Co-authored-by: Meliox --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 512cd7b..d3e1320 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: BUILD_VERSION: ${{ steps.version.outputs.version }} run: | perl -i -pe 'BEGIN { $v = $ENV{BUILD_VERSION} } - s/(our \$VERSION\s*=\s*'"'"')[^'"'"']*'"'"';/$1'"'"'$v'"'"';/ + s/(our \$VERSION\s*=\s*'"'"')[^'"'"']*'"'"';/${1}$v'"'"';/ ' src/node_info/files/Config.pm - name: Generate dynamic debian rules