download-artifact/README.md
2019-07-23 15:31:39 -04:00

633 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/my-artifact

License

The scripts and documentation in this project are released under the MIT License