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