Demo Render Deploy #73
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Demo Render Deploy | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| deploy-demo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Render Deploy | |
| run: | | |
| curl -X POST "${{ secrets.RENDER_DEPLOY_HOOK }}" \ | |
| -H "Content-Type: application/json" \ | |
| -d '{"trigger": "github_action"}' | |
| - name: Deployment Status | |
| run: echo "Demo deployment triggered successfully on Render" |