render-deploy-action
render-deploy-action copied to clipboard
A Github Action for trigging a deploy of a Render service.
### Does this require a major work?? Or is there something else?  I want to contribute, comment how can i?
```yaml name: Deploy on Release to Render on: release: types: [created] jobs: deploy-prod-web: runs-on: ubuntu-latest steps: - name: Deploy Prod Web Service to Render uses: johnbeynon/[email protected] with: service-id: srv-xxx api-key:...

When error responses are received from the Render API it doesn't fail the job. I noticed this when encountering a 401 error upon first getting this setup. So this uses...
The deployment API supports a version number and it would be very useful for this action to support that too
I have a Render service that pulls a Docker image from ghcr.io after a set of tests pass. ``` Run johnbeynon/render-deploy-action@747373cdb7b9b3f561438e063ee0815b71584f1b with: service-id: *** api-key: *** wait-for-success: true Error: Cannot...
The latest GitHub action was not working on my setup using image-based deploys, so this PR fixes this bug. Took advantage of upgrading to latest support Node version, and added...