瀏覽代碼

fix wrong condition (#14836)

Jay Chung 1 年之前
父節點
當前提交
82eeeec750
共有 1 個文件被更改,包括 1 次插入1 次删除
  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