download-artifact/README.md
2019-09-08 22:37:19 -07:00

39 lines
690 B
Markdown

# download-artifact
This downloads artifacts from your build.
See also [upload-artifact](https://github.com/actions/upload-artifact).
# Usage
See [action.yml](action.yml)
Basic (upload current working directory):
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/download-artifact@master
with:
name: my-artifact
- run: cat my-artifact
```
Download to specific directory:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/download-artifact@master
with:
name: my-artifact
path: path/to/artifact
- run: cat path/to/artifact
```
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)