2020-02-28 14:07:54 -05:00
2019-11-08 17:00:32 +00:00
2019-07-23 15:29:14 -04:00
2020-02-28 14:07:54 -05: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@v1

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

Download to specific directory:


steps:
- uses: actions/checkout@v1

- uses: actions/download-artifact@v1
  with:
    name: my-artifact
    path: path/to/artifact
    
- run: ls path/to/artifact

License

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

Description
version v4 of download artifact without GHES no support check
Readme MIT 2.9 MiB
Languages
TypeScript 100%