jeffreytse / jekyll-deploy-action

🪂 A Github Action to deploy the Jekyll site conveniently for GitHub Pages.
MIT License
344 stars 47 forks source link

[feature] Use group/endgroup #65

Open Freed-Wu opened 1 year ago

Freed-Wu commented 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 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::
jeffreytse commented 1 year ago

Hi @Freed-Wu

Thanks for your helpful suggestion, I will follow up this feature ASAP.

Thanks & Regards