mirror of
https://code.forgejo.org/actions/upload-artifact.git
synced 2025-02-23 10:35:44 -05:00
Warning: @v4 will not work from this mirror. Use a patched version at https://code.forgejo.org/forgejo/upload-artifact/src/tag/v4 instead
action.yml | ||
LICENSE | ||
README.md |
upload-artifact
This uploads artifacts from your build.
Usage
See action.yml
Basic (upload current working directory):
actions:
- uses: actions/checkout@master
# Do stuff
- uses: actions/upload-artifact@master
with:
name: my-artifact
Upload specific directory:
actions:
- uses: actions/checkout@master
- run: mkdir -p path/to/artifact
- run: echo hello > path/to/artifact/world.txt
- uses: actions/upload-artifact@master
with:
name: my-artifact
path: path/to/artifact
License
The scripts and documentation in this project are released under the MIT License