Madhuri Gummalla e76b5a2383
Merge pull request #7 from StoneCypher/patch-1
Update README.md
2019-10-10 11:20:55 -04:00
2019-09-06 13:19:36 -04:00
2019-07-23 15:29:14 -04:00

download-artifact

This downloads artifacts from your build.

See also upload-artifact.

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

Description
No description provided
Readme MIT 61 MiB
Languages
TypeScript 100%