From 82eeeec750395d95e5cc788fd7737ce44d245484 Mon Sep 17 00:00:00 2001 From: Jay Chung Date: Thu, 31 Aug 2023 09:23:59 +0800 Subject: [PATCH] fix wrong condition (#14836) --- .github/workflows/backend.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 299b023366..243f241963 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -267,7 +267,7 @@ jobs: echo "Skip Build!" exit 0 fi - if [[ ${{ needs.build.result }} != 'success' || ${{ needs.cluster-test.result }} != 'success' || ${{ needs.schema-check.result }} != 'success' ]]; then + if [[ ${{ needs.build.result }} != 'success' || ${{ needs.cluster-test.result }} != 'success' ]]; then echo "Build Failed!" exit -1 fi