2017-07-04 07:11:48 +03:00
< img src = "images/logo.png" / >
2017-01-17 09:48:14 +03:00
2016-10-04 16:45:49 +03:00
# drone-telegram
2017-07-04 04:21:51 +03:00
[![GoDoc ](https://godoc.org/github.com/appleboy/drone-telegram?status.svg )](https://godoc.org/github.com/appleboy/drone-telegram)
[![Build Status ](http://drone.wu-boy.com/api/badges/appleboy/drone-telegram/status.svg )](http://drone.wu-boy.com/appleboy/drone-telegram)
[![codecov ](https://codecov.io/gh/appleboy/drone-telegram/branch/master/graph/badge.svg )](https://codecov.io/gh/appleboy/drone-telegram)
[![Go Report Card ](https://goreportcard.com/badge/github.com/appleboy/drone-telegram )](https://goreportcard.com/report/github.com/appleboy/drone-telegram)
[![Docker Pulls ](https://img.shields.io/docker/pulls/appleboy/drone-telegram.svg )](https://hub.docker.com/r/appleboy/drone-telegram/)
[![ ](https://images.microbadger.com/badges/image/appleboy/drone-telegram.svg )](https://microbadger.com/images/appleboy/drone-telegram "Get your own image badge on microbadger.com")
[![Release ](https://github-release-version.herokuapp.com/github/appleboy/drone-telegram/release.svg?style=flat )](https://github.com/appleboy/drone-telegram/releases/latest)
2016-10-04 16:45:49 +03:00
2017-02-08 04:31:39 +03: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 16:45:49 +03:00
2016-10-06 19:43:03 +03:00
## Feature
2016-10-07 03:18:50 +03:00
* [x] Send with Text Message. (`markdown` or `html` format)
2016-10-07 09:35:58 +03:00
* [x] Send with New Photo.
2016-10-07 16:50:42 +03:00
* [x] Send with New Document.
2016-10-14 08:36:08 +03:00
* [x] Send with New Audio.
2016-10-14 08:57:31 +03:00
* [x] Send with New Voice.
2016-10-14 09:27:34 +03:00
* [x] Send with New Location.
2016-10-14 11:28:40 +03:00
* [x] Send with New Venue.
2016-10-14 10:36:50 +03:00
* [x] Send with New Video.
2016-10-09 04:56:31 +03:00
* [x] Send with New Sticker.
2016-10-06 19:43:03 +03:00
2016-10-04 16:45:49 +03: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 17:34:20 +03:00
-e PLUGIN_TOKEN=xxxxxxx \
2016-10-04 16:45:49 +03:00
-e PLUGIN_TO=xxxxxxx \
-e PLUGIN_MESSAGE=test \
2016-10-07 12:25:24 +03:00
-e PLUGIN_PHOTO=tests/github.png \
2016-10-07 16:50:42 +03:00
-e PLUGIN_DOCUMENT=tests/gophercolor.png \
2016-10-09 04:56:31 +03:00
-e PLUGIN_STICKER=tests/github-logo.png \
2016-10-14 08:36:08 +03:00
-e PLUGIN_AUDIO=tests/audio.mp3 \
2016-10-14 08:57:31 +03:00
-e PLUGIN_VOICE=tests/voice.ogg \
2016-10-14 09:27:34 +03:00
-e PLUGIN_LOCATION=24.9163213,121.1424972 \
2016-10-14 11:28:40 +03:00
-e PLUGIN_VENUE=24.9163213,121.1424972,title,address \
2016-10-14 10:36:50 +03:00
-e PLUGIN_VIDEO=tests/video.mp4 \
2016-10-04 17:23:13 +03:00
-e PLUGIN_DEBUG=true \
2016-11-09 07:23:19 +03:00
-e PLUGIN_ONLY_MATCH_EMAIL=false \
2016-10-07 12:25:24 +03:00
-e PLUGIN_FORMAT=markdown \
2016-10-04 16:45:49 +03:00
-e DRONE_REPO_OWNER=appleboy \
-e DRONE_REPO_NAME=go-hello \
-e DRONE_COMMIT_SHA=e5e82b5eb3737205c25955dcc3dcacc839b7be52 \
-e DRONE_COMMIT_BRANCH=master \
-e DRONE_COMMIT_AUTHOR=appleboy \
2016-11-04 05:11:39 +03:00
-e DRONE_COMMIT_AUTHOR_EMAIL=appleboy@gmail.com \
2016-10-04 16:45:49 +03:00
-e DRONE_BUILD_NUMBER=1 \
-e DRONE_BUILD_STATUS=success \
-e DRONE_BUILD_LINK=http://github.com/appleboy/go-hello \
2016-11-24 04:37:19 +03:00
-e DRONE_TAG=1.0.0 \
2016-11-02 05:01:26 +03:00
-e DRONE_JOB_STARTED=1477550550 \
-e DRONE_JOB_FINISHED=1477550750 \
2016-10-07 12:25:24 +03:00
-v $(pwd):$(pwd) \
-w $(pwd) \
2016-10-04 16:45:49 +03:00
appleboy/drone-telegram
```
2016-11-12 11:51:14 +03: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
```