From ec6f82ea4c06453441f04d3264ad23947ffc12cb Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:21:10 +0200 Subject: [PATCH] ci: fix unexpected token in expression error Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- .github/workflows/release-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-ci.yml b/.github/workflows/release-ci.yml index 40ad14e..de94d7a 100644 --- a/.github/workflows/release-ci.yml +++ b/.github/workflows/release-ci.yml @@ -28,7 +28,7 @@ jobs: run: | if [[ ${{ github.ref }} == *"rustic_core"* ]]; then echo "package=rustic_core" >> $GITHUB_OUTPUT - elif [[ ${{ github.ref }} == *"rustic_testing"*]]; then + elif [[ ${{ github.ref }} == *"rustic_testing"* ]]; then echo "package=rustic_testing" >> $GITHUB_OUTPUT elif [[ ${{ github.ref }} == *"rustic-"* ]]; then echo "package=rustic-rs" >> $GITHUB_OUTPUT