2019-06-25 04:38:44 +08:00
# upload-artifact
2019-07-24 03:24:56 +08:00
2019-08-03 02:13:17 +08:00
This uploads artifacts from your workflow.
2019-07-24 03:24:56 +08:00
# Usage
See [action.yml ](action.yml )
2019-07-24 03:35:48 +08:00
Basic:
2019-07-24 03:24:56 +08:00
```yaml
2019-07-26 09:33:03 +08:00
steps:
2019-07-24 03:31:14 +08:00
- uses: actions/checkout@master
2019-07-24 03:24:56 +08:00
- run: mkdir -p path/to/artifact
- run: echo hello > path/to/artifact/world.txt
2019-07-24 03:31:14 +08:00
- uses: actions/upload-artifact@master
2019-07-24 03:24:56 +08:00
with:
name: my-artifact
path: path/to/artifact
```
2019-08-21 03:25:46 +08: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 />
![Artifacts Screenshot ](https://user-images.githubusercontent.com/3685876/62906968-1b4aff80-bd3f-11e9-8815-9058eb05692a.png )
2019-07-24 03:24:56 +08:00
# License
The scripts and documentation in this project are released under the [MIT License ](LICENSE )