From 509eaee93efeec540a2c0eafd9d3a3dd6d8de535 Mon Sep 17 00:00:00 2001 From: Zephrynis <132010650+zephrynis@users.noreply.github.com> Date: Sat, 5 Apr 2025 13:40:53 +0100 Subject: [PATCH] Fix: remove quotes from version --- .github/workflows/export_ext.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/export_ext.yml b/.github/workflows/export_ext.yml index 080e537..fca2d8f 100644 --- a/.github/workflows/export_ext.yml +++ b/.github/workflows/export_ext.yml @@ -18,6 +18,8 @@ jobs: id: get_version run: | VERSION=$(sed -n 's/^[[:space:]]*version:[[:space:]]*//p' conf.yml | head -n 1) + VERSION=${VERSION//\"/} + VERSION=${VERSION//\'/} echo "Detected version: $VERSION" echo "VERSION=$VERSION" >> $GITHUB_ENV echo "::set-output name=VERSION::$VERSION"