Drone plugin for creating and tagging Gitea releases
Go to file
Thomas Boerger 3375ca6731
Switched to 0.5 build process
2016-06-15 12:31:27 +02:00
vendor Added vendoring for reproducable builds 2016-06-15 12:30:36 +02:00
.drone.yml Switched to 0.5 build process 2016-06-15 12:31:27 +02:00
.drone.yml.sig Switched to 0.5 build process 2016-06-15 12:31:27 +02:00
.gitignore Updated gitignore to respect also coverage.out 2016-02-21 11:38:17 +01:00
DOCS.md Add file_exists option: overwrite/skip/fail 2016-02-11 22:44:34 +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, added names and athieriot 2016-02-21 11:20:00 +01:00
Makefile Make the builds reproducable based on commit sha 2016-02-21 11:06:40 +01:00
README.md Reference to DOCS.md from README.md for usage information 2016-02-25 23:38:37 +01:00
checksum.go adding checksum options 2016-01-15 10:46:00 -06:00
logo.svg Implemented initial version based on google/go-github 2015-11-23 22:35:33 +01:00
main.go Make the builds reproducable based on commit sha 2016-02-21 11:06:40 +01:00
types.go Add file_exists option: overwrite/skip/fail 2016-02-11 22:44:34 +01:00
vendor.yml Added vendoring for reproducable builds 2016-06-15 12:30:36 +02:00

README.md

drone-github-release

Build Status Coverage Status

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.

Binary

Build the binary using make:

make deps build

Example

./drone-github-release <<EOF
{
    "repo": {
        "clone_url": "git://github.com/drone/drone",
        "owner": "drone",
        "name": "drone",
        "full_name": "drone/drone"
    },
    "system": {
        "link_url": "https://beta.drone.io"
    },
    "build": {
        "number": 22,
        "status": "success",
        "started_at": 1421029603,
        "finished_at": 1421029813,
        "message": "Update the Readme",
        "author": "johnsmith",
        "author_email": "john.smith@gmail.com"
        "event": "push",
        "branch": "master",
        "commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
        "ref": "refs/heads/master"
    },
    "workspace": {
        "root": "/drone/src",
        "path": "/drone/src/github.com/drone/drone"
    },
    "vargs": {
        "api_key": "your_api_key",
        "files": [
            "dist/*.txt",
            "dist/other-file"
        ],
        "checksum": [
            "sha1",
            "sha256",
            "sha512"
        ]
    }
}
EOF

Docker

Build the container using make:

make deps docker

Example

docker run -i plugins/drone-github-release <<EOF
{
    "repo": {
        "clone_url": "git://github.com/drone/drone",
        "owner": "drone",
        "name": "drone",
        "full_name": "drone/drone"
    },
    "system": {
        "link_url": "https://beta.drone.io"
    },
    "build": {
        "number": 22,
        "status": "success",
        "started_at": 1421029603,
        "finished_at": 1421029813,
        "message": "Update the Readme",
        "author": "johnsmith",
        "author_email": "john.smith@gmail.com"
        "event": "push",
        "branch": "master",
        "commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
        "ref": "refs/heads/master"
    },
    "workspace": {
        "root": "/drone/src",
        "path": "/drone/src/github.com/drone/drone"
    },
    "vargs": {
        "api_key": "your_api_key",
        "files": [
            "dist/*.txt",
            "dist/other-file"
        ],
        "checksum": [
            "sha1",
            "sha256",
            "sha512"
        ]
    }
}
EOF