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