mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-09 23:22:44 +00:00
Merge pull request #13 from actions/ethomson/update_description
Update description
This commit is contained in:
commit
18f0f591fb
2 changed files with 6 additions and 6 deletions
|
@ -11,9 +11,9 @@ See [action.yml](action.yml)
|
||||||
Basic (download to current working directory):
|
Basic (download to current working directory):
|
||||||
```yaml
|
```yaml
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
- uses: actions/download-artifact@master
|
- uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: my-artifact
|
name: my-artifact
|
||||||
|
|
||||||
|
@ -24,9 +24,9 @@ Download to specific directory:
|
||||||
```yaml
|
```yaml
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
- uses: actions/download-artifact@master
|
- uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: my-artifact
|
name: my-artifact
|
||||||
path: path/to/artifact
|
path: path/to/artifact
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: 'Download artifact'
|
name: 'Download a Build Artifact'
|
||||||
description: 'Download workflow artifacts'
|
description: 'Download a build artifact that was previously uploaded in the workflow by the upload-artifact action'
|
||||||
author: 'GitHub'
|
author: 'GitHub'
|
||||||
inputs:
|
inputs:
|
||||||
name:
|
name:
|
||||||
|
|
Loading…
Reference in a new issue