mirror of
https://code.forgejo.org/forgejo/download-artifact.git
synced 2025-01-18 22:04:45 +01:00
Temporary fork until v4 supports GHES.
964323f426
Add docs |
||
---|---|---|
action.yml | ||
LICENSE | ||
README.md |
download-artifact
This downloads artifacts from your build.
Usage
See action.yml
Basic (upload current working directory):
actions:
- uses: actions/checkout@master
- uses: actions/download-artifact@master
with:
name: my-artifact
- run: cat my-artifact
Download to specific directory:
actions:
- 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