Skip to content

Commit cdfe38c

Browse files
fix(ci): check released versions (#1931)
Description Fix checks for released versions. Add the missing space in conditions. ------------ Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
1 parent 7d012b5 commit cdfe38c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release_module_release-channels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ jobs:
406406
run: |
407407
# When check_only is true, we don't want to wait 120 seconds
408408
# because we just want to check the version we're interested in on the website
409-
if [ $input_check_only = false]; then
409+
if [ $input_check_only = false ]; then
410410
echo "Waiting for site to update (versions are usually updated within 2 minutes)..."
411411
sleep 120
412412
fi
@@ -423,7 +423,7 @@ jobs:
423423
run: |
424424
# When check_only is true, we don't want to wait 300 seconds
425425
# because we just want to check the version we're interested in on the website
426-
if [ $input_check_only = false]; then
426+
if [ $input_check_only = false ]; then
427427
echo "Waiting for site to update (versions are usually updated within 5 minutes)..."
428428
sleep 300
429429
fi

0 commit comments

Comments
 (0)