fix if condition

pull/7154/head
Gokhan Gulbiz 2023-08-23 13:24:00 +03:00
parent dd8dfb9c85
commit cfa58e9225
No known key found for this signature in database
GPG Key ID: 608EF06B6BD1B45B
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ runs:
- name: Publish regression.diffs
run: |-
diffs="$(find src/test/regress -name "*.diffs" -exec cat {} +)"
if [ -z "$diffs" ]; then
if ! [ -z "$diffs" ]; then
echo '```diff' >> $GITHUB_STEP_SUMMARY
echo $diffs >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY