Merge pull request #448 from actions/users/aiyan/cache-package

Initial commit to create @actions/cache package
This commit is contained in:
Aiqiao Yan
2020-05-15 13:41:32 -04:00
committed by GitHub
26 changed files with 2025 additions and 4 deletions

View File

@@ -59,6 +59,8 @@ $ npm install @actions/io
Provides functions for downloading and caching tools. e.g. setup-* actions. Read more [here](packages/tool-cache)
See @actions/cache for caching workflow dependencies.
```bash
$ npm install @actions/tool-cache
```
@@ -82,6 +84,15 @@ $ npm install @actions/artifact
```
<br/>
:dart: [@actions/cache](packages/cache)
Provides functions to cache dependencies and build outputs to improve workflow execution time. Read more [here](packages/cache)
```bash
$ npm install @actions/cache
```
<br/>
## Creating an Action with the Toolkit
:question: [Choosing an action type](docs/action-types.md)