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

https://github.com/minddocdev/github-deployment-action

Github action that manages Github deployments through its API
https://github.com/minddocdev/github-deployment-action

Last synced: 7 months ago
JSON representation

Github action that manages Github deployments through its API

Awesome Lists containing this project

README

          

# Github Deployment Action

Install the dependencies

```bash
yarn install
```

Build the typescript

```bash
yarn build
```

Run the tests :heavy_check_mark:

```bash
yarn test
```

## Usage

Create github deployment

```yaml
- name: Create deployment
uses: minddocdev/github-deployment-action@releases/v1
with:
token: ${{ github.token }}
ref: master
payload: '
{
"app": "myApp"
}
'
environment: staging
description: myApp staging deployment
required_contexts: '[]'
```