From 46103fe32e0e92fb471fb4d893d33110341e8f90 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Tue, 29 Oct 2024 13:32:20 -0600 Subject: [PATCH] remove empty line after the if to avoid error --- .github/workflows/build-tag-release.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-tag-release.yml b/.github/workflows/build-tag-release.yml index 736ff9c..3ff1679 100644 --- a/.github/workflows/build-tag-release.yml +++ b/.github/workflows/build-tag-release.yml @@ -26,14 +26,13 @@ jobs: run_plugin_update="false" for file in ${{ steps.get-changed-files.outputs.all }}; do echo "Checking if file '$file' should trigger a plugin release" - if - [[ "$file" != */.wordpress.org/+(*) ]] && \ - [[ "$file" != */.github/+(*) ]] && \ - [[ "$file" != */readme.* ]] && \ - [[ "$file" != */".gitattributes" ]] && \ - [[ "$file" != */".gitignore" ]] && \ - [[ "$file" != */"catalog-info.yml" ]] && \ - [[ "$file" != *composer* ]]; then + if [[ "$file" != */.wordpress.org/+(*) ]] && \ + [[ "$file" != */.github/+(*) ]] && \ + [[ "$file" != */readme.* ]] && \ + [[ "$file" != */".gitattributes" ]] && \ + [[ "$file" != */".gitignore" ]] && \ + [[ "$file" != */"catalog-info.yml" ]] && \ + [[ "$file" != *composer* ]]; then echo "'$file' is not an ignored file." run_plugin_update="true" break