mirror of
https://code.forgejo.org/actions/download-artifact
synced 2025-07-12 05:06:01 +02:00
No description
.github/workflows | ||
dist | ||
src | ||
.eslintignore | ||
.eslintrc.json | ||
.gitignore | ||
.prettierignore | ||
.prettierrc.json | ||
action.yml | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json |
download-artifact
This downloads artifacts from your build.
See also upload-artifact.
Usage
See action.yml
Basic (download to current working directory):
steps:
- uses: actions/checkout@v1
- uses: actions/download-artifact@v1
with:
name: my-artifact
- run: cat my-artifact
Download to specific directory:
steps:
- uses: actions/checkout@v1
- uses: actions/download-artifact@v1
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