You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
53 lines
1.6 KiB
# drone-github-release
|
|
|
|
[](http://beta.drone.io/drone-plugins/drone-github-release)
|
|
[](http://godoc.org/github.com/drone-plugins/drone-github-release)
|
|
[](https://goreportcard.com/report/github.com/drone-plugins/drone-github-release)
|
|
[](https://gitter.im/drone/drone)
|
|
|
|
Drone plugin to publish files and artifacts to GitHub Release. For the usage
|
|
information and a listing of the available options please take a look at
|
|
[the docs](DOCS.md).
|
|
|
|
## Build
|
|
|
|
Build the binary with the following commands:
|
|
|
|
```
|
|
go build
|
|
go test
|
|
```
|
|
|
|
## Docker
|
|
|
|
Build the docker image with the following commands:
|
|
|
|
```
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo
|
|
docker build --rm=true -t plugins/github-release .
|
|
```
|
|
|
|
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-github-release' not found or does not exist..
|
|
```
|
|
|
|
## Usage
|
|
|
|
Execute from the working directory:
|
|
|
|
```sh
|
|
docker run --rm \
|
|
-e DRONE_BUILD_EVENT=tag \
|
|
-e DRONE_REPO_OWNER=octocat \
|
|
-e DRONE_REPO_NAME=foo \
|
|
-e DRONE_COMMIT_REF=refs/heads/master \
|
|
-e PLUGIN_API_KEY=${HOME}/.ssh/id_rsa \
|
|
-e PLUGIN_FILES=master \
|
|
-v $(pwd):$(pwd) \
|
|
-w $(pwd) \
|
|
plugins/github-release
|
|
```
|
|
|