mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-09 15:12:44 +00:00
No description
action.yml | ||
LICENSE | ||
README.md |
download-artifact
This downloads artifacts from your build.
Usage
See action.yml
Basic (upload current working directory):
steps:
- uses: actions/checkout@master
- uses: actions/download-artifact@master
with:
name: my-artifact
- run: cat my-artifact
Download to specific directory:
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