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