Skip to content

Commit

Permalink
remove globbing again
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Oct 29, 2024
1 parent 46103fe commit 844677d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
shell: bash
run: |
echo "Changed files: ${{ steps.get-changed-files.outputs.all }}"
shopt -s extglob nocasematch
shopt -s nocasematch
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/+(*) ]] && \
if [[ "$file" != */.wordpress.org/* ]] && \
[[ "$file" != */.github/* ]] && \
[[ "$file" != */readme.* ]] && \
[[ "$file" != */".gitattributes" ]] && \
[[ "$file" != */".gitignore" ]] && \
Expand Down

0 comments on commit 844677d

Please sign in to comment.