Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Oct 29, 2024
1 parent aa5fec2 commit d5b6fc1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ 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" == .github/* ]]; then
echo "'$file' is inside the .github/ directory."
if [[ "$file" == */.github/* ]]; then
echo "'$file' is an absolute path containing .github/."
elif [[ "$file" == .github/* ]]; then
echo "'$file' is a relative path inside .github/."
fi
if [[ "$file" != *".wordpress.org/"* ]] && \
[[ "$file" != *".github/"* ]] && \
Expand Down

0 comments on commit d5b6fc1

Please sign in to comment.