From c645c337dd8c1fb17ef5aa7edcfeecccc6bb862a Mon Sep 17 00:00:00 2001 From: Taylor Smock Date: Thu, 29 Aug 2024 14:35:56 -0600 Subject: [PATCH] Fix release needed check Signed-off-by: Taylor Smock --- .github/workflows/ant.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 3db0d0b..c9bb0a2 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -36,7 +36,7 @@ jobs: last_tag=$(git describe --tags --abbrev=0 --always) release_needed="false" for file in $(git diff ${last_tag}..HEAD --name-only); do - if [[ $file = "src/"* ]] || [[ $file = "data/*" ]] || [[ $file = "lib/*" ]] || [[ $file = "resources/*" ]] || [[ $file = "images/*" ]]; then + if [[ $file = "src/"* ]] || [[ $file = "data/"* ]] || [[ $file = "lib/"* ]] || [[ $file = "resources/"* ]] || [[ $file = "images/"* ]]; then release_needed="true" break fi