Open
Description
https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#grouping-log-lines support group/endgroup. Why not change every echo "Starting XXX"
to group/endgroup?
echo "Starting jekyll build"
JEKYLL_ENV=production bundle exec jekyll build \
${JEKYLL_BASEURL} \
-c ${JEKYLL_CFG} \
-d ${WORKING_DIR}/build
echo "::group::Starting jekyll build"
JEKYLL_ENV=production bundle exec jekyll build \
${JEKYLL_BASEURL} \
-c ${JEKYLL_CFG} \
-d ${WORKING_DIR}/build
echo ::endgroup::