From 5b4f042e58c3b77473ea862e55132a57b8bd1cfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=BCnch?= Date: Tue, 10 Oct 2023 18:38:29 +0200 Subject: [PATCH] Fix the deploy script --- .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 968f9cd5..5ca28987 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -45,8 +45,8 @@ jobs: - uses: jackbilestech/semver-compare@1.0.4 if: startsWith(github.ref, 'refs/tags/') with: - head: '${{ env.pushed_version }}' - base: '${{ env.latest_released_version }}' + head: ${{ env.pushed_version }} + base: ${{ env.latest_released_version }} - name: Setup PHP uses: shivammathur/setup-php@v2