Temporary fork of the download-artifact action until v4/v5/v6 supports GHES. See https://code.forgejo.org/forgejo/runner/src/branch/main/RELEASE-NOTES.md#3-4-0 for more information. (The official version currently only supports GitHub proper)
Find a file
2019-09-08 22:37:19 -07:00
action.yml Update action.yml 2019-09-06 13:19:36 -04:00
LICENSE Create LICENSE 2019-07-23 15:29:14 -04:00
README.md Update README.md 2019-09-08 22:37:19 -07:00

download-artifact

This downloads artifacts from your build.

See also upload-artifact.

Usage

See action.yml

Basic (upload 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