rename package.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu
2016-10-18 10:08:12 +08:00
parent b2e4805d89
commit 0cf583c9c7
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -23,5 +23,5 @@ _testmain.go
*.test
*.prof
vendor
drone-jenkins
drone-sftp
coverage.txt
+2 -2
View File
@@ -4,5 +4,5 @@ RUN apk update && \
apk add ca-certificates && \
rm -rf /var/cache/apk/*
ADD drone-telegram /bin/
ENTRYPOINT ["/bin/drone-telegram"]
ADD drone-sftp /bin/
ENTRYPOINT ["/bin/drone-sftp"]
+5 -5
View File
@@ -1,8 +1,8 @@
# drone-jenkins
# drone-sftp
[![Build Status](https://travis-ci.org/appleboy/drone-jenkins.svg?branch=master)](https://travis-ci.org/appleboy/drone-jenkins) [![codecov](https://codecov.io/gh/appleboy/drone-jenkins/branch/master/graph/badge.svg)](https://codecov.io/gh/appleboy/drone-jenkins) [![Go Report Card](https://goreportcard.com/badge/github.com/appleboy/drone-jenkins)](https://goreportcard.com/report/github.com/appleboy/drone-jenkins)
[![Build Status](https://travis-ci.org/appleboy/drone-sftp.svg?branch=master)](https://travis-ci.org/appleboy/drone-sftp) [![codecov](https://codecov.io/gh/appleboy/drone-sftp/branch/master/graph/badge.svg)](https://codecov.io/gh/appleboy/drone-sftp) [![Go Report Card](https://goreportcard.com/badge/github.com/appleboy/drone-sftp)](https://goreportcard.com/report/github.com/appleboy/drone-sftp)
[Drone](https://github.com/drone/drone) plugin for trigger [Jenkins](https://jenkins.io/) jobs.
[Drone](https://github.com/drone/drone) plugin to publish files and artifacts via SFTP.
## Build
@@ -33,7 +33,7 @@ GCO disabled will result in an error when running the Docker image:
```
docker: Error response from daemon: Container command
'/bin/drone-jenkins' not found or does not exist..
'/bin/drone-sftp' not found or does not exist..
```
## Usage
@@ -56,5 +56,5 @@ docker run --rm \
-e DRONE_BUILD_LINK=http://github.com/appleboy/go-hello \
-v $(pwd):$(pwd) \
-w $(pwd) \
appleboy/drone-jenkins
appleboy/drone-sftp
```