Open Freed-Wu opened 1 year ago
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 XXX"
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::
Hi @Freed-Wu
Thanks for your helpful suggestion, I will follow up this feature ASAP.
Thanks & Regards
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?