1
0
mirror of https://gitea.com/actions/download-artifact.git synced 2025-02-23 12:10:38 +07:00
download-artifact/README.md

40 lines
679 B
Markdown
Raw Normal View History

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