1
0
mirror of https://github.com/actions/download-artifact.git synced 2025-12-06 01:37:50 +01:00
Files
download-artifact/README.md
Bryan MacFarlane 378baa6d3e actions to steps
2019-07-25 21:31:50 -04:00

617 B

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