Browse Source

Fix docs style is incorrect by CI pass (#15167)

augit-log
Jay Chung 6 months ago committed by GitHub
parent
commit
0016b96b85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      .github/workflows/docs.yml

12
.github/workflows/docs.yml

@ -70,9 +70,13 @@ jobs:
- style
- img-check
- dead-link
if: success()
if: always()
steps:
- name: success
- name: Status
run: |
echo "Docs check success"
exit 0
if [[ ${{ contains(needs.*.result, 'failure') }} == 'true' || ${{ contains(needs.*.result, 'cancelled') }} == 'true' ]]; then
echo "Build Failed!"
exit 1
else
echo "Build Success!"
fi

Loading…
Cancel
Save