Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sws2apps/render-deployment
- Owner: sws2apps
- License: mit
- Created: 2022-09-10T06:41:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T20:01:22.000Z (2 months ago)
- Last Synced: 2024-10-24T22:34:28.553Z (2 months ago)
- Topics: actions, api, deployment, github-actions, hosting, marketplace, render
- Language: JavaScript
- Homepage:
- Size: 711 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
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
```