Skip to content

Commit

Permalink
broader pattern matching
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Oct 29, 2024
1 parent 5003c59 commit aa5fec2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
if [[ "$file" == .github/* ]]; then
echo "'$file' is inside the .github/ directory."
fi
if [[ "$file" != */.wordpress.org/* ]] && \
[[ "$file" != */.github/* ]] && \
[[ "$file" != */readme.* ]] && \
[[ "$file" != */".gitattributes" ]] && \
[[ "$file" != */".gitignore" ]] && \
[[ "$file" != */"catalog-info.yml" ]] && \
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"
Expand Down

0 comments on commit aa5fec2

Please sign in to comment.