mirror of
https://github.com/actions/download-artifact.git
synced 2025-12-31 15:02:17 +00:00
No description
| action.yml | ||
| LICENSE | ||
| README.md | ||
download-artifact
This downloads artifacts from your build.
See also upload-artifact.
Usage
See action.yml
Basic (download to current working directory):
steps:
- uses: actions/checkout@v1
- uses: actions/download-artifact@v1
with:
name: my-artifact
- run: cat my-artifact
Download to specific directory:
steps:
- uses: actions/checkout@v1
- uses: actions/download-artifact@v1
with:
name: my-artifact
path: path/to/artifact
- run: cat path/to/artifact/hello-world.txt
License
The scripts and documentation in this project are released under the MIT License