2015-11-17 18:17:16 +00:00
# drone-github-release
2015-11-23 00:07:57 +00:00
2015-12-23 14:17:14 +00:00
[![Build Status ](http://beta.drone.io/api/badges/drone-plugins/drone-github-release/status.svg )](http://beta.drone.io/drone-plugins/drone-github-release)
2016-01-18 21:32:19 +00:00
[![Coverage Status ](https://aircover.co/badges/drone-plugins/drone-github-release/coverage.svg )](https://aircover.co/drone-plugins/drone-github-release)
2015-12-23 14:17:14 +00:00
[![ ](https://badge.imagelayers.io/plugins/drone-github-release:latest.svg )](https://imagelayers.io/?images=plugins/drone-github-release:latest 'Get your own badge on imagelayers.io')
2016-01-18 21:32:19 +00:00
Drone plugin to publish files and artifacts to GitHub Release
2015-11-23 00:07:57 +00:00
2016-01-18 21:32:19 +00:00
## Binary
2015-11-23 00:07:57 +00:00
2016-01-18 21:32:19 +00:00
Build the binary using `make` :
```
make deps build
2015-11-23 00:07:57 +00:00
```
2016-01-18 21:32:19 +00:00
### Example
```sh
2015-11-23 00:07:57 +00:00
./drone-github-release < < EOF
{
"repo": {
"clone_url": "git://github.com/drone/drone",
"owner": "drone",
2016-01-18 21:32:19 +00:00
"name": "drone",
"full_name": "drone/drone"
},
"system": {
"link_url": "https://beta.drone.io"
2015-11-23 00:07:57 +00:00
},
"build": {
2016-01-18 21:32:19 +00:00
"number": 22,
"status": "success",
"started_at": 1421029603,
"finished_at": 1421029813,
"message": "Update the Readme",
"author": "johnsmith",
"author_email": "john.smith@gmail.com"
"event": "push",
"branch": "master",
"commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
"ref": "refs/heads/master"
2015-11-23 00:07:57 +00:00
},
"workspace": {
"root": "/drone/src",
2015-12-23 14:17:14 +00:00
"path": "/drone/src/github.com/drone/drone"
2015-11-23 00:07:57 +00:00
},
"vargs": {
"api_key": "your_api_key",
"files": [
"dist/*.txt",
"dist/other-file"
2016-01-15 17:29:12 +00:00
],
2016-01-15 21:30:59 +00:00
"checksum": [
2016-01-15 17:29:12 +00:00
"sha1",
"sha256",
2016-01-18 21:32:19 +00:00
"sha512"
2015-11-23 00:07:57 +00:00
]
}
}
EOF
```
## Docker
2016-01-18 21:32:19 +00:00
Build the container using `make` :
2015-11-23 00:07:57 +00:00
```
2016-01-18 21:32:19 +00:00
make deps docker
2015-12-23 14:17:14 +00:00
```
### Example
```sh
docker run -i plugins/drone-github-release < < EOF
{
"repo": {
"clone_url": "git://github.com/drone/drone",
"owner": "drone",
2016-01-18 21:32:19 +00:00
"name": "drone",
"full_name": "drone/drone"
},
"system": {
"link_url": "https://beta.drone.io"
2015-12-23 14:17:14 +00:00
},
"build": {
2016-01-18 21:32:19 +00:00
"number": 22,
"status": "success",
"started_at": 1421029603,
"finished_at": 1421029813,
"message": "Update the Readme",
"author": "johnsmith",
"author_email": "john.smith@gmail.com"
"event": "push",
"branch": "master",
"commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
"ref": "refs/heads/master"
2015-12-23 14:17:14 +00:00
},
"workspace": {
"root": "/drone/src",
"path": "/drone/src/github.com/drone/drone"
},
"vargs": {
"api_key": "your_api_key",
"files": [
"dist/*.txt",
"dist/other-file"
2016-01-15 17:29:12 +00:00
],
2016-01-15 21:30:59 +00:00
"checksum": [
2016-01-15 17:29:12 +00:00
"sha1",
"sha256",
2016-01-18 21:32:19 +00:00
"sha512"
2015-12-23 14:17:14 +00:00
]
}
}
EOF
2015-11-23 00:07:57 +00:00
```