1
0
mirror of https://github.com/actions/download-artifact.git synced 2025-12-06 17:57:49 +01:00
Files
download-artifact/README.md
Danny McCormick 7933a7ec4c Update README.md
2019-07-23 15:34:36 -04:00

621 B

download-artifact

This downloads artifacts from your build.

Usage

See action.yml

Basic (upload current working directory):

actions:
- uses: actions/checkout@master

- uses: actions/download-artifact@master
  with:
    name: my-artifact
    
- run: cat my-artifact

Download to specific directory:


actions:
- 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