1
0
Fork 0
mirror of https://code.forgejo.org/actions/download-artifact.git synced 2024-09-20 11:06:05 +02:00
download-artifact/README.md

40 lines
679 B
Markdown
Raw Normal View History

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