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