We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f87999b commit d8a98e6Copy full SHA for d8a98e6
1 file changed
.github/workflows/build.yml
@@ -239,7 +239,9 @@ jobs:
239
git config --global user.name "GitHub Action"
240
- run: git add -- ./docs/${{ env.friendly-version }}
241
- id: check-diff
242
- run: git diff --exit-code ./docs/
+ run: |
243
+ set -e
244
+ git diff --exit-code ./docs/
245
- run: |
246
echo "Check diff exit code: $?"
247
echo "Check diff outcome: ${{ steps.check-diff.outcome }}"
0 commit comments