Bläddra i källkod

fix wrong condition (#14836)

Jay Chung 1 år sedan
förälder
incheckning
82eeeec750
1 ändrade filer med 1 tillägg och 1 borttagningar
  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