2019-06-24 16:38:44 -04:00
# upload-artifact
2019-07-23 15:24:56 -04:00
2019-08-02 14:13:17 -04:00
This uploads artifacts from your workflow.
2019-07-23 15:24:56 -04:00
2019-09-09 01:36:31 -04:00
See also [download-artifact ](https://github.com/actions/download-artifact ).
2019-07-23 15:24:56 -04:00
# Usage
See [action.yml ](action.yml )
2019-07-23 15:35:48 -04:00
Basic:
2019-07-23 15:24:56 -04:00
```yaml
2019-07-25 21:33:03 -04:00
steps:
2019-08-28 08:44:51 -04:00
- uses: actions/checkout@v1
2019-07-23 15:24:56 -04:00
- run: mkdir -p path/to/artifact
- run: echo hello > path/to/artifact/world.txt
2019-11-12 17:29:16 -05:00
- uses: actions/upload-artifact@v1
2019-07-23 15:24:56 -04:00
with:
name: my-artifact
path: path/to/artifact
```
2019-10-13 15:21:48 -04:00
To upload artifacts only when the previous step of a job failed, use [`if: failure()` ](https://help.github.com/en/articles/contexts-and-expression-syntax-for-github-actions#job-status-check-functions ):
```yaml
2019-11-25 13:12:56 -05:00
- uses: actions/upload-artifact@v1
2019-10-13 15:21:48 -04:00
if: failure()
with:
name: my-artifact
path: path/to/artifact
```
2019-08-20 15:25:46 -04:00
## Where does the upload go?
In the top right corner of a workflow run, once the run is over, if you used this action, there will be a `Artifacts` dropdown which you can download items from. Here's a screenshot of what it looks like< br />
2020-01-16 14:38:17 -05:00
< img src = "https://user-images.githubusercontent.com/16109154/72556687-20235a80-386d-11ea-9e2a-b534faa77083.png" width = "375" height = "140" >
2020-01-16 14:36:06 -05:00
There is a trash can icon that can be used to delete the artifact. This icon will only appear for users who have write permissions to the repository.
2019-08-20 15:25:46 -04:00
2019-07-23 15:24:56 -04:00
# License
The scripts and documentation in this project are released under the [MIT License ](LICENSE )