2019-06-24 20:40:14 +00:00
|
|
|
# download-artifact
|
2019-07-23 19:28:49 +00:00
|
|
|
|
|
|
|
This downloads artifacts from your build.
|
|
|
|
|
2019-09-09 05:37:19 +00:00
|
|
|
See also [upload-artifact](https://github.com/actions/upload-artifact).
|
|
|
|
|
2019-07-23 19:28:49 +00:00
|
|
|
# Usage
|
|
|
|
|
|
|
|
See [action.yml](action.yml)
|
|
|
|
|
2019-09-17 23:37:29 +00:00
|
|
|
Basic (download to current working directory):
|
2019-07-23 19:28:49 +00:00
|
|
|
```yaml
|
2019-07-26 01:31:50 +00:00
|
|
|
steps:
|
2019-11-08 17:00:09 +00:00
|
|
|
- uses: actions/checkout@v1
|
2019-07-23 19:28:49 +00:00
|
|
|
|
2019-11-08 17:00:09 +00:00
|
|
|
- uses: actions/download-artifact@v1
|
2019-07-23 19:28:49 +00:00
|
|
|
with:
|
|
|
|
name: my-artifact
|
|
|
|
|
|
|
|
- run: cat my-artifact
|
|
|
|
```
|
|
|
|
|
|
|
|
Download to specific directory:
|
|
|
|
```yaml
|
|
|
|
|
2019-07-26 01:31:50 +00:00
|
|
|
steps:
|
2019-11-08 17:00:09 +00:00
|
|
|
- uses: actions/checkout@v1
|
2019-07-23 19:28:49 +00:00
|
|
|
|
2019-11-08 17:00:09 +00:00
|
|
|
- uses: actions/download-artifact@v1
|
2019-07-23 19:28:49 +00:00
|
|
|
with:
|
|
|
|
name: my-artifact
|
|
|
|
path: path/to/artifact
|
|
|
|
|
2019-07-23 19:34:36 +00:00
|
|
|
- run: cat path/to/artifact
|
2019-07-23 19:28:49 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
# License
|
|
|
|
|
|
|
|
The scripts and documentation in this project are released under the [MIT License](LICENSE)
|