mirror of
https://code.forgejo.org/forgejo/download-artifact.git
synced 2026-02-11 00:59:23 +00:00
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)
| 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@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