Is it possible to "group" output in CI only? #2254
Replies: 1 comment 2 replies
-
Hi @xaviergmail, You should use command-line flags for that. Task itself does this on our CI, so you can use that as an example: --output=group --output-group-begin='::group::{{.TASK}}' --output-group-end='::endgroup::' task/.github/workflows/test.yml Line 38 in da4ce5b |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am leveraging tasks in CI such that my CI/CD pipelines do nothing much more than just invoking tasks. For readability, I have the following:
This works great in GitHub Actions, but I don't like that I can't see error outputs in real-time when running these tasks locally.
I've had the idea of appending that yaml to my top level Taskfile at the start of CI jobs but I was wondering if there was an easier way to do it or if it would be feasible to request such a feature.
Beta Was this translation helpful? Give feedback.
All reactions