An open API service indexing awesome lists of open source software.

https://github.com/smithclay/github-deploytools

Docker image for managing GitHub deployments
https://github.com/smithclay/github-deploytools

Last synced: about 1 year ago
JSON representation

Docker image for managing GitHub deployments

Awesome Lists containing this project

README

          

### github-deploytools

Docker image for creating GitHub deployments and managing deployment statuses.

```sh
# usage
$ docker run --rm \
-e GITHUB_REPO=smithclay/hipster-shop \
-e GITHUB_TOKEN=foo \
github-deploytools

# create a deploy
$ docker run --rm \
-e LS_SERVICE_NAME=hipster-shop
-e GITHUB_REPO=smithclay/hipster-shop \
-e GITHUB_REF=master \
-e SERVICE_ENV=production \
-e GITHUB_TOKEN=foo \
github-deploytools create

# update a deployment status < id, status >
$ docker run --rm \
-e GITHUB_REPO=smithclay/hipster-shop \
-e GITHUB_TOKEN=foo \
github-deploytools update-status 308437643 success
```