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
- Host: GitHub
- URL: https://github.com/minddocdev/github-deployment-action
- Owner: minddocdev
- License: mit
- Created: 2019-12-05T14:24:07.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T20:18:36.000Z (over 2 years ago)
- Last Synced: 2025-01-22T08:13:02.646Z (about 1 year ago)
- Language: TypeScript
- Size: 2.01 MB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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: '[]'
```