Skip to content

Commit

Permalink
Fixed bug in release - tag 1.7.10 was less than tag 1.7.4 because str…
Browse files Browse the repository at this point in the history
…ing comparison was made
  • Loading branch information
linda.nasredin committed Feb 19, 2024
1 parent a671098 commit fa64f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
removed_tags=()
# Loop through each tag and filter if less than begin_tag
for tag in ${all_tags}; do
if [[ "$tag" < "${begin_tag}" ]]; then
if (( tag < begin_tag )); then
removed_tags+=("$tag")
fi
done
Expand Down

0 comments on commit fa64f7c

Please sign in to comment.