We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b9ac9e commit d31f935Copy full SHA for d31f935
1 file changed
.github/workflows/release-reminder.yml
@@ -22,11 +22,11 @@ jobs:
22
day_of_month=$(date +%d)
23
# Check if it's the second or fourth Thursday of the month
24
# 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
+ if [[ "$day_of_month" -ge "8" && "$day_of_month" -le "14" ]]; then
26
echo "It's the second Thursday of the month"
27
echo "bool=true" >> "${GITHUB_OUTPUT}"
28
# 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
+ if [[ "$day_of_month" -ge "22" && "$day_of_month" -le "28" ]]; then
30
echo "It's the fourth Thursday of the month"
31
32
else
0 commit comments