From 2c62c426403cdc804fe2f66fd1de70481d36f772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=BCnch?= Date: Tue, 10 Oct 2023 18:43:33 +0200 Subject: [PATCH] Removed wrong quotes in semver check --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5ca28987..e2931107 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -39,8 +39,8 @@ jobs: exit 1 fi - echo "pushed_version=\"$PUSHED_VERSION\"" >> "$GITHUB_ENV" - echo "latest_released_version=\"$LATEST_RELEASED_VERSION\"" >> "$GITHUB_ENV" + echo "pushed_version=$PUSHED_VERSION" >> "$GITHUB_ENV" + echo "latest_released_version=$LATEST_RELEASED_VERSION" >> "$GITHUB_ENV" - uses: jackbilestech/semver-compare@1.0.4 if: startsWith(github.ref, 'refs/tags/')