Victor Mattos
eb61015477
fix: reference chocolatey link anchor
...
Co-authored-by: Andrey Nering <andrey@nering.com.br>
2022-03-18 17:38:29 -03:00
Victor Mattos
40c644f006
docs: add chocolatey installation method
...
Resolves #683
2022-03-09 15:39:54 -03:00
Andrey Nering
b323531dd5
Improvements and CHANGELOG for #651
2022-02-19 19:31:27 -03:00
Andrey Nering
cfb665310e
Merge branch 'group-begin-message' of https://github.com/janslow/task into janslow-group-begin-message
2022-02-19 18:42:34 -03:00
Andrey Nering
51c6ebcd4d
Add tests, documentation and changelog for #666
2022-02-19 18:24:43 -03:00
Andrey Nering
f119596be6
Docs: Small change to title
2022-01-17 09:38:32 -03:00
Lechuck Roh
a65ee26446
Update 'community.md' to add IntelliJ plugin link
2022-01-16 22:24:12 +09:00
Jay Anslow
74f5cf8f29
Add support for begin/end messages with grouped output
...
Fixes #647
This allows CI systems that support grouping (such as with [GitHub Actions's `::group::` command](https://docs.github.com/en/actions/learn-github-actions/workflow-commands-for-github-actions#grouping-log-lines ) and [Azure Devops](https://docs.microsoft.com/en-us/azure/devops/pipelines/scripts/logging-commands?view=azure-devops&tabs=bash#formatting-commands )) to collapse all of the logs for a single task, to improve readability of logs
## Example
The following Taskfile
```
# Taskfile.yml
version: 3
output:
group:
begin: "::group::{{ .TASK }}"
end: "::endgroup::"
tasks:
default:
cmds:
- "echo 'Hello, World!'"
```
Results in the following output
```bash
$ task
task: [default] echo 'Hello, World!'
::group::default
Hello, World!
::endgroup::
```
See [this GitHub Actions job](https://github.com/janslow/task/runs/4811059609?check_suite_focus=true ) for a full example
<img width="771" alt="image" src="https://user-images.githubusercontent.com/1253367/149429832-6cb0c1b5-0758-442e-9375-c4daa65771bc.png ">
<img width="394" alt="image" src="https://user-images.githubusercontent.com/1253367/149429851-1d5d2ab5-9095-4795-9b57-f91750720d40.png ">
2022-01-14 00:22:14 +00:00
Andrey Nering
086d13ca2f
Docs: Remove line reference from file link
2022-01-13 10:39:38 -03:00
Mark Sagi-Kazar
191678f9d6
docs: add nix as an installation method
2022-01-13 00:15:04 +01:00
Andrey Nering
7e0346d6eb
Add CHANGELOG, documentation and small improvements to #401
2022-01-04 17:16:21 -03:00
Andrey Nering
d6c185580a
Add CHANGELOG, documentation and small improvements to #626
2022-01-04 16:56:13 -03:00
Omri Steiner
e8aa3a17a6
Fix typo in usage.md
2021-11-09 16:18:42 +02:00
Andrey Nering
3cfe21af58
Add shellQuote
template function
2021-10-02 18:29:07 -03:00
Andrey Nering
78792bd11c
Add CHANGELOG + Small improvement for #563
2021-09-26 21:55:31 -03:00
Andrey Nering
78ddf50d2d
Documentation: Remove reference to deprecated "expansions" keyword
...
Closes #575
2021-09-26 21:28:40 -03:00
Andrey Nering
e45ed85b55
Add CHANGELOG + Small nits for #552
2021-09-25 09:40:03 -03:00
Andrey Nering
52474f9103
Merge pull request #552 from justafish/justafish/519/optional-includes
...
Allow includes to be optional
2021-09-25 09:36:44 -03:00
Andrey Nering
fa0e72bd69
Documentation typo
...
Fixes #555
2021-09-04 21:30:28 -03:00
Sally Young
8f80fc4e2c
Issue #519 : Allow includes to be optional
2021-08-11 17:28:44 +01:00
Andrey Nering
8aa983257d
Small adjustments and CHANGELOG for #359
2021-07-31 20:29:59 -03:00
Ross Hammermeister
3e16ca37bc
Updating version checking
2021-07-31 19:36:40 -03:00
Ross Hammermeister
2da38a5bdc
Cleaning up the run code
2021-07-31 19:36:40 -03:00
Ross Hammermeister
97c85e39c3
Only run task once for #53
2021-07-31 19:36:40 -03:00
Andrey Nering
a7b59e5b12
community.md: Update title level
2021-07-23 18:32:13 -03:00
Ivan Elfimov
0e01e13670
Update community.md about Sublime Text 4 package
...
Added a simple abstract about Sublime Text 4 package with the links to the source code and package control.
2021-07-23 23:45:22 +03:00
Andrey Nering
51e9f2f579
Site: Enable search
2021-07-10 19:13:04 -03:00
Andrey Nering
e8ec33d9d0
Site: Return to light theme
2021-07-10 19:07:17 -03:00
Andrey Nering
75e9b7791c
Remove Patreon
...
Also, do a few more updates.
2021-07-04 21:45:07 -03:00
Nicolas Fouché
08265ed1d7
Allow vars in dotenv paths, including environment variables
...
Closes #453
Closes #434
Ref #433
Co-authored-by: Andrey Nering <andrey@nering.com.br>
2021-06-05 16:00:19 -03:00
per1234
a2c58415cf
Update docs for new arduino/setup-task action repository
...
The GitHub Actions action for installing Task has graduated from its original home in the experimental `arduino/action`
repository with a move to a dedicated permanent repository at `arduino/setup-task`. This move was accompanied by
significant upgrades to the project infrastructure to facilitate its maintenance and quality assurance.
A 1.0.0 release has been made and a `v1` ref that will track all releases in the major version 1 series. I have updated
the example snippet to use this `v1 ref because this will cause the user's workflows to use stable release versions of
the action while also benefiting from ongoing development to the action at each patch or minor release up until such time
as a new major release is made. At this time the user will be given the opportunity to evaluate whether any changes to
the workflow are required by the breaking change to the action that triggered the major release before manually updating
the major ref in the workflows (e.g., `uses: arduino/setup-task@v2`).
2021-05-20 02:40:09 -07:00
Andrey Nering
a57beb1de4
Website: Remove GitHub logo
...
The website that hosted the SVG file is offline for a while.
2021-04-17 17:34:00 -03:00
Andrey Nering
1648c44ee2
Website: Use dark theme
2021-04-17 17:34:00 -03:00
Andrey Nering
efe47a149e
Website: Remove "Examples" page
2021-04-17 17:33:52 -03:00
Andrey Nering
43a1f1314e
Website: Add a "Community" page
2021-04-17 11:59:24 -03:00
Jamie Edge
6f3d108c1e
Updated the install script documentation.
2021-04-04 17:31:41 +01:00
Jamie Edge
c34ee9c1f9
Updated the Go modules installation documentation for Go 1.16.
2021-04-04 17:30:42 +01:00
Andrey Nering
0c91011e88
Merge pull request #460 from patrick-mota/patch-1
...
Fix typo default installation
2021-03-28 11:10:38 -03:00
Andrey Nering
8bcd8719aa
Docs: Add GO111MODULE=on to go get
command
2021-03-28 10:45:36 -03:00
Ganon
29a8af509b
Fix typo default installation
2021-03-26 13:19:45 +01:00
Andrey Nering
d3cd9f17f9
Documentation: Update link
2021-03-20 13:30:38 -03:00
Andrey Nering
e6c4706b73
Add support for delegating CLI arguments with "--" and a special CLI_ARGS variable
...
Closes #327
2021-03-20 11:58:45 -03:00
Andrey Nering
1107f691ea
Update install script
...
Closes #428
Co-authored-by: odidev <odidev@puresoftware.com>
2021-01-12 10:43:45 -03:00
Andrey Nering
b2f08c9c20
Merge pull request #415 from felladrin/patch-1
...
Fix duplicate task name on "Short task syntax" example
2021-01-02 11:02:49 -03:00
Andrey Nering
6a4315b7e7
Merge pull request #407 from bryceschober/patch-1
...
Use {{default}} for an overriding usage
2021-01-01 19:21:50 -03:00
Andrey Nering
777645888a
New logo and color
2020-12-27 19:07:38 -03:00
Andrey Nering
95359760ae
Documentation: go get is actually supported
...
Closes #395
2020-12-26 15:06:39 -03:00
Victor Nogueira
f5eb80759b
Fix duplicate task name on "Short task syntax" example
...
To make it a valid YAML file and avoid the error:
```
yaml: unmarshal errors:
line 6: mapping key "build" already defined at line 4
```
2020-12-07 13:00:25 +02:00
Bryce Schober
bf88bd5da5
Use {{default}} for an overriding usage
...
Fixes documentation confusion raised in #376 .
2020-11-18 17:09:44 -08:00
Eugene Zhukov
b7112e02db
Update curl arguments in installation.md
...
Double -s argument does not make sense according to curl manual page.
-s stands for silent, while -S (capital S) stands for showing the error.
When used in combination, curl shows an error message if it fails, but disables progress meter.
Finally, in the end of sh command there is -d, which stands for debug and contradicts -sS curl arguments.
I suggest to remove curl silencers all together, because more debug is better in CIs. I also suggest to use --location instead of -L for clarity.
2020-11-17 10:02:06 +02:00