2017-07-03 23:11:48 -05:00
< img src = "images/logo.png" / >
2017-01-17 14:48:14 +08:00
2016-10-04 21:45:49 +08:00
# drone-telegram
2017-07-04 09:21:51 +08:00
[](https://godoc.org/github.com/appleboy/drone-telegram)
2019-02-17 00:24:30 +08:00
[](https://cloud.drone.io/appleboy/drone-telegram)
2017-07-04 09:21:51 +08:00
[](https://codecov.io/gh/appleboy/drone-telegram)
[](https://goreportcard.com/report/github.com/appleboy/drone-telegram)
[](https://hub.docker.com/r/appleboy/drone-telegram/)
[](https://microbadger.com/images/appleboy/drone-telegram "Get your own image badge on microbadger.com")
2016-10-04 21:45:49 +08:00
2017-02-08 09:31:39 +08:00
[Drone ](https://github.com/drone/drone ) plugin for sending telegram notifications. For the usage
information and a listing of the available options please take a look at [the docs ](http://plugins.drone.io/appleboy/drone-telegram/ ).
2016-10-04 21:45:49 +08:00
2016-10-07 00:43:03 +08:00
## Feature
2016-10-07 08:18:50 +08:00
* [x] Send with Text Message. (`markdown` or `html` format)
2016-10-07 14:35:58 +08:00
* [x] Send with New Photo.
2016-10-07 21:50:42 +08:00
* [x] Send with New Document.
2016-10-14 13:36:08 +08:00
* [x] Send with New Audio.
2016-10-14 13:57:31 +08:00
* [x] Send with New Voice.
2016-10-14 14:27:34 +08:00
* [x] Send with New Location.
2016-10-14 16:28:40 +08:00
* [x] Send with New Venue.
2016-10-14 15:36:50 +08:00
* [x] Send with New Video.
2016-10-09 09:56:31 +08:00
* [x] Send with New Sticker.
2016-10-07 00:43:03 +08:00
2016-10-04 21:45:49 +08:00
## Build
Build the binary with the following commands:
```
$ make build
```
## Testing
Test the package with the following command:
```
$ make test
```
## Docker
Build the docker image with the following commands:
```
$ make docker
```
Please note incorrectly building the image for the correct x64 linux and with
GCO disabled will result in an error when running the Docker image:
```
docker: Error response from daemon: Container command
'/bin/drone-telegram' not found or does not exist..
```
## Usage
Execute from the working directory:
```
docker run --rm \
2016-10-04 22:34:20 +08:00
-e PLUGIN_TOKEN=xxxxxxx \
2016-10-04 21:45:49 +08:00
-e PLUGIN_TO=xxxxxxx \
-e PLUGIN_MESSAGE=test \
2016-10-07 17:25:24 +08:00
-e PLUGIN_PHOTO=tests/github.png \
2016-10-07 21:50:42 +08:00
-e PLUGIN_DOCUMENT=tests/gophercolor.png \
2016-10-09 09:56:31 +08:00
-e PLUGIN_STICKER=tests/github-logo.png \
2016-10-14 13:36:08 +08:00
-e PLUGIN_AUDIO=tests/audio.mp3 \
2016-10-14 13:57:31 +08:00
-e PLUGIN_VOICE=tests/voice.ogg \
2016-10-14 14:27:34 +08:00
-e PLUGIN_LOCATION=24.9163213,121.1424972 \
2016-10-14 16:28:40 +08:00
-e PLUGIN_VENUE=24.9163213,121.1424972,title,address \
2016-10-14 15:36:50 +08:00
-e PLUGIN_VIDEO=tests/video.mp4 \
2016-10-04 22:23:13 +08:00
-e PLUGIN_DEBUG=true \
2016-11-09 12:23:19 +08:00
-e PLUGIN_ONLY_MATCH_EMAIL=false \
2016-10-07 17:25:24 +08:00
-e PLUGIN_FORMAT=markdown \
2016-10-04 21:45:49 +08:00
-e DRONE_REPO_OWNER=appleboy \
-e DRONE_REPO_NAME=go-hello \
-e DRONE_COMMIT_SHA=e5e82b5eb3737205c25955dcc3dcacc839b7be52 \
-e DRONE_COMMIT_BRANCH=master \
2017-09-11 07:34:47 +03:00
-e DRONE_COMMIT_LINK=https://github.com/appleboy/go-hello/compare/master... \
2016-10-04 21:45:49 +08:00
-e DRONE_COMMIT_AUTHOR=appleboy \
2016-11-04 10:11:39 +08:00
-e DRONE_COMMIT_AUTHOR_EMAIL=appleboy@gmail .com \
2016-10-04 21:45:49 +08:00
-e DRONE_BUILD_NUMBER=1 \
-e DRONE_BUILD_STATUS=success \
-e DRONE_BUILD_LINK=http://github.com/appleboy/go-hello \
2016-11-24 09:37:19 +08:00
-e DRONE_TAG=1.0.0 \
2016-11-02 10:01:26 +08:00
-e DRONE_JOB_STARTED=1477550550 \
-e DRONE_JOB_FINISHED=1477550750 \
2016-10-07 17:25:24 +08:00
-v $(pwd):$(pwd) \
-w $(pwd) \
2016-10-04 21:45:49 +08:00
appleboy/drone-telegram
```
2016-11-12 16:51:14 +08:00
Load all environments from file.
```bash
docker run --rm \
-e ENV_FILE=your_env_file_path \
-v $(pwd):$(pwd) \
-w $(pwd) \
appleboy/drone-telegram
```