Browse Source

fix wrong condition (#14836)

augit-log
Jay Chung 9 months ago committed by GitHub
parent
commit
82eeeec750
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/backend.yml

2
.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

Loading…
Cancel
Save