Browse Source

fix wrong condition (#14836)

Jay Chung 1 year ago
parent
commit
82eeeec750
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/backend.yml

+ 1 - 1
.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