Skip to content

Commit

Permalink
remove empty line after the if to avoid error
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Oct 29, 2024
1 parent 0c16373 commit 46103fe
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build-tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 46103fe

Please sign in to comment.