From 21a0ae2c4f657c13378d358bf2e03be1fe94f616 Mon Sep 17 00:00:00 2001 From: Willy Date: Wed, 19 Apr 2023 20:42:55 +0200 Subject: [PATCH] fix typo --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 02dd671c..11aa75ea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: echo "is_release=true" >> $GITHUB_OUTPUT echo "is_prerelease=false" >> $GITHUB_OUTPUT echo "version=$STABLE_TAG" >> $GITHUB_OUTPUT - elif [ "${{ github.ref }}" = "refs/tags/BETA_TAG" ]; then + elif [ "${{ github.ref }}" = "refs/tags/$BETA_TAG" ]; then echo "is_release=true" >> $GITHUB_OUTPUT echo "is_prerelease=true" >> $GITHUB_OUTPUT echo "version=$BETA_TAG" >> $GITHUB_OUTPUT