Skip to content

Commit 467541c

Browse files
committed
That should be || and not &&
1 parent 165c87e commit 467541c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# Step 6: Fail the build if any script returns exit code 1
5454
- name: Check exit code
5555
run: |
56-
if [[ "${{ steps.spellcheck.outcome }}" == "failure" ]] && [[ "${{ steps.kbcheck.outcome }}" == "failure" ]]; then
56+
if [[ "${{ steps.spellcheck.outcome }}" == "failure" ]] || [[ "${{ steps.kbcheck.outcome }}" == "failure" ]]; then
5757
echo "Style check failed. See the logs for details."
5858
exit 1
5959
fi

0 commit comments

Comments
 (0)