mirror of https://github.com/actions/toolkit
bump core for release and docs (#189)
parent
565d0bbe18
commit
a65441cf46
|
@ -100,6 +100,14 @@ function startGroup(name: string): void {}
|
||||||
function endGroup(): void {}
|
function endGroup(): void {}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Save State
|
||||||
|
|
||||||
|
Save state to be used in the corresponding wrapper (finally) post job entry point.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
echo ::save-state name=FOO::foovalue
|
||||||
|
```
|
||||||
|
|
||||||
### Log Level
|
### Log Level
|
||||||
|
|
||||||
Finally, there are several commands to emit different levels of log output:
|
Finally, there are several commands to emit different levels of log output:
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# @actions/core Releases
|
# @actions/core Releases
|
||||||
|
|
||||||
|
### 1.2.0
|
||||||
|
|
||||||
|
- saveState and getState functions for wrapper tasks (on finally entry points that run post job)
|
||||||
|
|
||||||
### 1.1.3
|
### 1.1.3
|
||||||
|
|
||||||
- setSecret added to register a secret with the runner to be masked from the logs
|
- setSecret added to register a secret with the runner to be masked from the logs
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@actions/core",
|
"name": "@actions/core",
|
||||||
"version": "1.1.3",
|
"version": "1.2.0",
|
||||||
"description": "Actions core lib",
|
"description": "Actions core lib",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"github",
|
"github",
|
||||||
|
|
Loading…
Reference in New Issue