Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sws2apps/render-deployment

A GitHub Action to trigger and track deployment in Render
https://github.com/sws2apps/render-deployment

actions api deployment github-actions hosting marketplace render

Last synced: about 1 month ago
JSON representation

A GitHub Action to trigger and track deployment in Render

Awesome Lists containing this project

README

        

# Render Deployment

A GitHub Action to trigger deployment in Render.

## Example Usage

```yaml
name: Trigger Render Deployment
on:
push:
branches:
- main
jobs:
main:
name: Deploy to Render
runs-on: ubuntu-latest
steps:
- name: Trigger deployment
uses: sws2apps/render-deployment@main #consider using pin for dependabot auto update
with:
serviceId: ${{ secrets.RENDER_SERVICE_ID }}
apiKey: ${{ secrets.RENDER_API_KEY }}
multipleDeployment: false #optional, default true
```