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:
@@ -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::
|
||||||
```
|
```
|
||||||
|
Reference in New Issue
Block a user