Drone plugin for creating and tagging Gitea releases
Go to file
jackspirou 56f429e280 fixing typo 2016-01-12 06:44:01 -06:00
.drone.sec updated parameters file 2015-12-23 11:31:11 -05:00
.drone.yml Added makefile, updated docs 2015-12-23 15:19:01 +01:00
.gitignore Implemented initial version based on google/go-github 2015-11-23 22:35:33 +01:00
DOCS.md Added makefile, updated docs 2015-12-23 15:19:01 +01:00
Dockerfile comments, cleanup, and some restructure 2016-01-11 22:33:03 -06:00
LICENSE Implemented initial version based on google/go-github 2015-11-23 22:35:33 +01:00
MAINTAINERS Updated MAINTAINERS file [CI SKIP] 2015-12-09 14:18:43 -08:00
Makefile Added makefile, updated docs 2015-12-23 15:19:01 +01:00
README.md Added makefile, updated docs 2015-12-23 15:19:01 +01:00
logo.svg Implemented initial version based on google/go-github 2015-11-23 22:35:33 +01:00
main.go fixing typo 2016-01-12 06:44:01 -06:00
types.go comments, cleanup, and some restructure 2016-01-11 22:33:03 -06:00

README.md

drone-github-release

Build Status

Drone plugin for publishing GitHub releases

Usage

./drone-github-release <<EOF
{
    "repo": {
        "clone_url": "git://github.com/drone/drone",
        "full_name": "drone/drone",
        "owner": "drone",
        "name": "drone"
    },
    "build": {
        "event": "tag",
        "branch": "refs/heads/v0.0.1",
        "commit": "8f5d3b2ce38562bedb48b798328f5bb2e4077a2f",
        "ref": "refs/heads/v0.0.1"
    },
    "workspace": {
        "root": "/drone/src",
        "path": "/drone/src/github.com/drone/drone"
    },
    "vargs": {
        "api_key": "your_api_key",
        "files": [
            "dist/*.txt",
            "dist/other-file"
        ]
    }
}
EOF

Docker

Build the Docker container using make:

make deps build docker

Example

docker run -i plugins/drone-github-release <<EOF
{
    "repo": {
        "clone_url": "git://github.com/drone/drone",
        "full_name": "drone/drone",
        "owner": "drone",
        "name": "drone"
    },
    "build": {
        "event": "tag",
        "branch": "refs/heads/v0.0.1",
        "commit": "8f5d3b2ce38562bedb48b798328f5bb2e4077a2f",
        "ref": "refs/heads/v0.0.1"
    },
    "workspace": {
        "root": "/drone/src",
        "path": "/drone/src/github.com/drone/drone"
    },
    "vargs": {
        "api_key": "your_api_key",
        "files": [
            "dist/*.txt",
            "dist/other-file"
        ]
    }
}
EOF