render-deploy-action icon indicating copy to clipboard operation
render-deploy-action copied to clipboard

A Github Action for trigging a deploy of a Render service.

Results 8 render-deploy-action issues
Sort by recently updated
recently updated
newest added

### Does this require a major work?? Or is there something else? ![Annotations](https://github.com/johnbeynon/render-deploy-action/assets/60871161/1ad980af-2b27-489f-9db4-e5d98e8f2be7) 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:...

![image](https://user-images.githubusercontent.com/39631247/200368159-642dfff7-b790-4951-859e-c430204e1f73.png)

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...