Fix text grouping issue on github actions

github action grouping is broken because we were outputing "::endgroup" where
it needs "::endgroup::". This patch also added some addtional grouping around
contianer setup phase, making output easier to read.
This commit is contained in:
Yucong Sun
2021-08-04 11:16:29 -07:00
committed by Andrii Nakryiko
parent f8ab8bde8e
commit 3f22535d56
4 changed files with 6 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ travis_fold() {
line="$line - ${YELLOW}$3${NOCOLOR}"
fi
else
line="::endgroup"
line="::endgroup::"
fi
echo -e "$line"
fi