1
0
Fork 0

Remove --save in README (#455)

pull/464/head
Konrad Pabjan 2020-05-14 17:58:46 +02:00 committed by GitHub
parent 36e732155e
commit 6d83c79964
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ The GitHub Actions ToolKit provides a set of packages to make creating actions e
Provides functions for inputs, outputs, results, logging, secrets and variables. Read more [here](packages/core) Provides functions for inputs, outputs, results, logging, secrets and variables. Read more [here](packages/core)
```bash ```bash
$ npm install @actions/core --save $ npm install @actions/core
``` ```
<br/> <br/>
@ -33,7 +33,7 @@ $ npm install @actions/core --save
Provides functions to exec cli tools and process output. Read more [here](packages/exec) Provides functions to exec cli tools and process output. Read more [here](packages/exec)
```bash ```bash
$ npm install @actions/exec --save $ npm install @actions/exec
``` ```
<br/> <br/>
@ -42,7 +42,7 @@ $ npm install @actions/exec --save
Provides functions to search for files matching glob patterns. Read more [here](packages/glob) Provides functions to search for files matching glob patterns. Read more [here](packages/glob)
```bash ```bash
$ npm install @actions/glob --save $ npm install @actions/glob
``` ```
<br/> <br/>
@ -51,7 +51,7 @@ $ npm install @actions/glob --save
Provides disk i/o functions like cp, mv, rmRF, find etc. Read more [here](packages/io) Provides disk i/o functions like cp, mv, rmRF, find etc. Read more [here](packages/io)
```bash ```bash
$ npm install @actions/io --save $ npm install @actions/io
``` ```
<br/> <br/>
@ -60,7 +60,7 @@ $ npm install @actions/io --save
Provides functions for downloading and caching tools. e.g. setup-* actions. Read more [here](packages/tool-cache) Provides functions for downloading and caching tools. e.g. setup-* actions. Read more [here](packages/tool-cache)
```bash ```bash
$ npm install @actions/tool-cache --save $ npm install @actions/tool-cache
``` ```
<br/> <br/>
@ -69,7 +69,7 @@ $ npm install @actions/tool-cache --save
Provides an Octokit client hydrated with the context that the current action is being run in. Read more [here](packages/github) Provides an Octokit client hydrated with the context that the current action is being run in. Read more [here](packages/github)
```bash ```bash
$ npm install @actions/github --save $ npm install @actions/github
``` ```
<br/> <br/>
@ -78,7 +78,7 @@ $ npm install @actions/github --save
Provides functions to interact with actions artifacts. Read more [here](packages/artifact) Provides functions to interact with actions artifacts. Read more [here](packages/artifact)
```bash ```bash
$ npm install @actions/artifact --save $ npm install @actions/artifact
``` ```
<br/> <br/>