1
0
mirror of https://github.com/go-task/task.git synced 2025-03-17 21:08:01 +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:
group:
begin: '::begin::{{.TASK}}'
begin: '::group::{{.TASK}}'
end: '::endgroup::'
tasks:
@ -1070,7 +1070,7 @@ tasks:
```bash
$ task default
::begin::default
::group::default
Hello, World!
::endgroup::
```