From cb58fd85500f21df7516d4de50f9a872560506d1 Mon Sep 17 00:00:00 2001 From: GPaulH <159654544+GPaulH@users.noreply.github.com> Date: Wed, 31 Jul 2024 16:20:41 +0300 Subject: [PATCH] Update changing the sed regex to fit MConnect's version printing --- .github/workflows/mconnect-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mconnect-release.yaml b/.github/workflows/mconnect-release.yaml index c630bf3..496a323 100644 --- a/.github/workflows/mconnect-release.yaml +++ b/.github/workflows/mconnect-release.yaml @@ -26,7 +26,7 @@ jobs: id: get_version run: | cd tools/mconnect - VERSION=$(./mconnect -v | sed 's/Mconnect version //') + VERSION=$(./mconnect -v | sed 's/mconnect version //') TIMESTAMP=$(date +%Y%m%d%H%M%S) echo "VERSION=v${VERSION}" >> $GITHUB_OUTPUT echo "RELEASE_TAG=v${VERSION}-${TIMESTAMP}" >> $GITHUB_OUTPUT