upload-artifact/README.md

39 lines
640 B
Markdown
Raw Normal View History

2019-06-25 04:38:44 +08:00
# upload-artifact
2019-07-24 03:24:56 +08:00
This uploads artifacts from your build.
# Usage
See [action.yml](action.yml)
Basic (upload current working directory):
```yaml
actions:
2019-07-24 03:31:14 +08:00
- uses: actions/checkout@master
2019-07-24 03:24:56 +08:00
# Do stuff
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
```
Upload specific directory:
```yaml
actions:
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
```
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)