1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

Fix GHA grouping examples

Our example was not using the correct syntax required for grouping
command output on GHA.
This commit is contained in:
Sorin Sbarnea
2022-06-21 17:40:11 +01:00
parent 0c46fa5a56
commit 4e7d8bacdb

View File

@@ -1058,7 +1058,7 @@ version: '3'
output: output:
group: group:
begin: '::begin::{{.TASK}}' begin: '::group::{{.TASK}}'
end: '::endgroup::' end: '::endgroup::'
tasks: tasks:
@@ -1070,7 +1070,7 @@ tasks:
```bash ```bash
$ task default $ task default
::begin::default ::group::default
Hello, World! Hello, World!
::endgroup:: ::endgroup::
``` ```