Deploy to Render
ActionsTags
(2)Deploy your Render app through GitHub Actions.
- First you need to disable auto deploy option in your render app settings.
Settings > Build and Deploy > Auto-Deploy
. - Add your
service id
and your renderapi key
to your GitHub repository secrets.Settings > Secrets > Actions
. - Add this action to your pipeline.
steps:
- uses: actions/checkout@v3
- uses: JorgeLNJunior/render-deploy@v1.3.2
with:
service_id: ${{ secrets.RENDER_SERVICE_ID }} # required
api_key: ${{ secrets.RENDER_API_KEY }} # required
clear_cache: false # Clear build cache. Optional
wait_deploy: false # Wait until the deploy status is successful. Warning! Free Render services can take +5 minutes to be fully deployed. Optional
Project under MIT » license.
Deploy to Render is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.