2019-07-23 15:29:14 -04:00
2019-06-24 14:40:04 -06:00
2019-07-23 15:29:14 -04:00
2019-07-23 15:28:49 -04:00

download-artifact

This downloads artifacts from your build.

Usage

See action.yml

Basic (upload current working directory):

actions:
- uses: actions/checkout@latest

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

Download to specific directory:


actions:
- uses: actions/checkout@latest

- uses: actions/download-artifact@latest
  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

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