upload-artifact/README.md

32 lines
804 B
Markdown
Raw Normal View History

2019-06-24 20:38:44 +00:00
# upload-artifact
2019-07-23 19:24:56 +00:00
2019-08-02 18:13:17 +00:00
This uploads artifacts from your workflow.
2019-07-23 19:24:56 +00:00
# Usage
See [action.yml](action.yml)
2019-07-23 19:35:48 +00:00
Basic:
2019-07-23 19:24:56 +00:00
```yaml
2019-07-26 01:33:03 +00:00
steps:
- uses: actions/checkout@v1
2019-07-23 19:24:56 +00:00
- run: mkdir -p path/to/artifact
- run: echo hello > path/to/artifact/world.txt
2019-07-23 19:31:14 +00:00
- uses: actions/upload-artifact@master
2019-07-23 19:24:56 +00:00
with:
name: my-artifact
path: path/to/artifact
```
## 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-23 19:24:56 +00:00
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)