File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ jobs:
2222 day_of_month=$(date +%d)
2323 # Check if it's the second or fourth Thursday of the month
2424 # second thursday of the month will always be between day 8 and 14 (inclusive)
25- if [[ "$day_of_month" -ge "8" && "$day_of_month" -le "14" ]; then
25+ if [[ "$day_of_month" -ge "8" && "$day_of_month" -le "14" ]] ; then
2626 echo "It's the second Thursday of the month"
2727 echo "bool=true" >> "${GITHUB_OUTPUT}"
2828 # fourth thursday of the month will always be between day 21 and 28 (inclusive)
29- if [[ "$day_of_month" -ge "22" && "$day_of_month" -le "28" ]; then
29+ if [[ "$day_of_month" -ge "22" && "$day_of_month" -le "28" ]] ; then
3030 echo "It's the fourth Thursday of the month"
3131 echo "bool=true" >> "${GITHUB_OUTPUT}"
3232 else
You can’t perform that action at this time.
0 commit comments