download-artifact/README.md
Laurence Armstrong e6a5ab4206
Update README.md
2019-09-18 08:37:29 +09:00

622 B

download-artifact

This downloads artifacts from your build.

Usage

See action.yml

Basic (download to 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